Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5320,6 +5320,12 @@ protected void rewriteOrderByAll(SqlSelect select) {
throw newValidationError(expr,
RESOURCE.orderByAllRequiresExplicitSelectList());
}
// A constant literal is a no-op sort key (nothing to reorder); excluding it also
// avoids materializing an ambiguous "ORDER BY <integer literal>" on unparse, which
// would be re-parsed as an ordinal position.
if (expr instanceof SqlLiteral) {
continue;
}
keys.add(applyOrderByAllDirection(expr, desc, nulls, pos));
}
select.setOrderBy(new SqlNodeList(keys, pos));
Expand Down Expand Up @@ -5521,7 +5527,10 @@ private void rewriteGroupByAll(SqlSelect select) {
throw newValidationError(expr,
RESOURCE.groupByAllRequiresExplicitSelectList());
}
if (aggOrOverFinder.findAgg(expr) == null) {
// A constant literal is a no-op grouping key (one group either way); excluding it
// also avoids materializing an ambiguous "GROUP BY <integer literal>" on unparse,
// which would be re-parsed as an ordinal position.
if (aggOrOverFinder.findAgg(expr) == null && !(expr instanceof SqlLiteral)) {
keys.add(expr);
}
}
Expand Down
28 changes: 28 additions & 0 deletions core/src/test/java/org/apache/calcite/test/SqlValidatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7367,6 +7367,20 @@ public boolean isBangEqualAllowed() {
.withValidatorIdentifierExpansion(true)
.withConformance(SqlConformanceEnum.BABEL)
.ok();

// A constant literal is a no-op sort key and is excluded: only SAL is a
// sort key, so the rewrite does not emit an ambiguous "ORDER BY 42".
sql("select sal, 42 from emp order by all")
.rewritesTo("SELECT `SAL`, 42\n"
+ "FROM `EMP`\n"
+ "ORDER BY `SAL`");

// Under a conformance that sorts by ordinal, an emitted "ORDER BY 42" would
// be read as ordinal position 42 rather than as the constant; excluding the
// literal keeps the expansion valid in every conformance.
sql("select sal, 42 from emp order by all")
.withConformance(SqlConformanceEnum.LENIENT)
.ok();
}

@Test void testOrder() {
Expand Down Expand Up @@ -7829,6 +7843,20 @@ public boolean isBangEqualAllowed() {
sql("select deptno as d, count(*) from emp group by all")
.withConformance(SqlConformanceEnum.LENIENT)
.ok();

// A constant literal is a no-op grouping key and is excluded: only DEPTNO
// becomes a key, so the rewrite does not emit an ambiguous "GROUP BY 42".
sql("select deptno, 42 from emp group by all")
.rewritesTo("SELECT `DEPTNO`, 42\n"
+ "FROM `EMP`\n"
+ "GROUP BY `EMP`.`DEPTNO`");

// Under a conformance that groups by ordinal, an emitted "GROUP BY 42" would
// be read as ordinal position 42 and rejected as out of range; excluding the
// literal keeps the expansion valid in every conformance.
sql("select deptno, 42, count(*) from emp group by all")
.withConformance(SqlConformanceEnum.LENIENT)
.ok();
}

/** Test case for
Expand Down
Loading