Troubleshoot issues with the multi-stage query engine (v2)
Troubleshoot issues with the multi-stage query engine (v2).
Limitations of the multi-stage query engine
Support for multi value columns is limited
SELECT count(*), RandomAirports FROM airlineStats GROUP BY RandomAirportsSELECT count(*), arrayToMv(RandomAirports) FROM airlineStats GROUP BY arrayToMv(RandomAirports)Schema and other prefixes are not supported
SELECT* from default.myTable;
SELECT * from schemaName.myTable;SELECT * from myTable;Modifying query behavior based on the cluster config is not supported
Ambiguous reference to a projected column in statement clauses
Tightened restriction on function naming
Default names for projections with function calls
Table names and column names are case sensitive
Arbitrary number of arguments isn't supported
NULL function support
Troubleshoot errors
Semantic/runtime errors
Timeout errors
Was this helpful?

