Skip to content

Commit

Permalink
[hotfix] Fix typo in HiveShimV100
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtYoung committed Dec 10, 2019
1 parent 5452bec commit decacc9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ public Object toHiveDate(Object flinkDate) {
@Override
public LocalDate toFlinkDate(Object hiveDate) {
Preconditions.checkArgument(hiveDate instanceof Date,
"Expecting Hive timestamp to be an instance of %s, but actually got %s",
"Expecting Hive Date to be an instance of %s, but actually got %s",
Date.class.getName(), hiveDate.getClass().getName());
return ((Date) hiveDate).toLocalDate();
}
Expand Down

0 comments on commit decacc9

Please sign in to comment.