mihaibudiu commented on code in PR #4389:
URL: https://github.com/apache/calcite/pull/4389#discussion_r2096269636
##########
core/src/main/java/org/apache/calcite/runtime/CalciteResource.java:
##########
@@ -1150,4 +1150,7 @@ ExInst<RuntimeException>
multipleCapturingGroupsForRegexpFunctions(String value,
@BaseMessage("Index in ROW type does not have a constant integer or string
value")
ExInst<SqlValidatorException> illegalRowIndex();
+
+ @BaseMessage("Unsupported SQL kind ''{0}'' among SELECT items")
Review Comment:
This does not seem to be exercised by any test.
##########
core/src/main/java/org/apache/calcite/sql/SqlUtil.java:
##########
@@ -835,9 +835,17 @@ public static SqlNode getSelectListItem(SqlNode query, int
i) {
assert row.operandCount() > i : "VALUES has too few columns";
return row.operand(i);
+ case EXCEPT:
Review Comment:
I don't see how this is related to the issue described
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]