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
-- example 1: used in GROUP-BY
SELECT count(*), RandomAirports FROM airlineStats
GROUP BY RandomAirports
-- example 2: used in PREDICATE
SELECT * FROM airlineStats WHERE RandomAirports IN ('SFO', 'JFK')
-- example 3: used in ORDER-BY
SELECT count(*), RandomAirports FROM airlineStats
GROUP BY RandomAirports
ORDER BY RandomAirports DESCSchema and other prefixes are not supported
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
Tightened restriction on function signature and type matching
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
Custom transform function support
Custom aggregate function support
Troubleshoot errors
Semantic/runtime errors
Timeout errors
Was this helpful?

