mirror of
https://github.com/apache/impala.git
synced 2026-01-25 18:01:04 -05:00
Analysis errors occurred with select queries that combined ordinals in the group by/order by clauses with select list aliases that had the same name as a column in one of the underlying tables. The root cause was a double substitution: e.g. the ordinal 1 in a GROUP BY clause was replaced with the corresponding select list expression, then a reference to column 'x' in an underlying table was replaced erroneously with the select list expression with alias 'x' Change-Id: I0f298290c58f18239e1ff83f0388d037c311f5fb Reviewed-on: http://gerrit.cloudera.org:8080/542 Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com> Tested-by: Tim Armstrong <tarmstrong@cloudera.com>
This directory contains Impala test workloads. The directory layout for the workloads should follow: workloads/ <data set name>/<data set name>_dimensions.csv <- The test dimension file <data set name>/<data set name>_core.csv <- A test vector file <data set name>/<data set name>_pairwise.csv <data set name>/<data set name>_exhaustive.csv <data set name>/queries/<query test>.test <- The queries for this workload