Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xiedeyantu committed Mar 18, 2024
1 parent 0560263 commit 8aee7d6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ private static Literal getDateTimeLiteral(String value, Type type) throws Analys
} else if (type.isDatetimeV2()) {
return new DateTimeV2Literal(value);
}
throw new AnalysisException("date convert to datetime failed, value is [" + value + "], type is [" + type + "].");
throw new AnalysisException("date convert to datetime failed, "
+ "value is [" + value + "], type is [" + type + "].");
}

public static PartitionKey createListPartitionKeyWithTypes(List<PartitionValue> values, List<Type> types,
Expand Down

0 comments on commit 8aee7d6

Please sign in to comment.