(improvement)(headless) not merge nested aggregations (#1760)

This commit is contained in:
jipeli
2024-10-09 20:18:59 +08:00
committed by GitHub
parent 0a728d3d5d
commit 3cae4c1ea6

View File

@@ -81,4 +81,8 @@ public class SemanticSqlDialect extends SqlDialect {
@Nullable SqlNode fetch) { @Nullable SqlNode fetch) {
unparseFetchUsingAnsi(writer, offset, fetch); unparseFetchUsingAnsi(writer, offset, fetch);
} }
public boolean supportsNestedAggregations() {
return false;
}
} }