Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
Impala 2.0, Impala 2.2, Impala 2.3.0, Impala 2.5.0
Description
Improve the error message when a subquery is used in an ON clause.
Example:
[localhost:21000] > select * from alltypes a inner join alltypes b on a.id = b.id and a.int_col < (select min(id) from alltypes c); Query: select * from alltypes a inner join alltypes b on a.id = b.id and a.int_col < (select min(id) from alltypes c) ERROR: AnalysisException: null CAUSED BY: IllegalStateException: null
Attachments
Issue Links
- is duplicated by
-
IMPALA-5645 AnalysisException when join on clause contains subquery
- Resolved