Skip to content

Commit

Permalink
Update iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryeng…
Browse files Browse the repository at this point in the history
…ine/plan/relational/metadata/TableMetadataImpl.java

Co-authored-by: Jackie Tien <[email protected]>
  • Loading branch information
FearfulTomcat27 and JackieTien97 committed Sep 4, 2024
1 parent 145b056 commit cfa7179
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public Type getOperatorReturnType(OperatorType operatorType, List<? extends Type
switch (operatorType) {
case ADD:
if (!isTwoTypeCalculable(argumentTypes)
|| AdditionResolver.checkConditions(argumentTypes) == null) {
|| !AdditionResolver.checkConditions(argumentTypes).isPresent()) {
throw new OperatorNotFoundException(
operatorType,
argumentTypes,
Expand Down

0 comments on commit cfa7179

Please sign in to comment.