Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
If we create a view, and do a select * from view join another table T on columns with identical names from the base table of view and from table T, then Drill will incorrectly return 0 rows.
create view myview as select n_nationkey, n_name, n_regionkey, n_comment from cp.`tpch/nation.parquet`;
// return 0 rows! Because of column re-naming
select * from myview v join cp.`tpch/nation.parquet` n on v.n_nationkey = n.n_nationkey;
Attachments
Issue Links
- Is contained by
-
DRILL-931 Wildcard queries cause problems in certain schemaless situations
- Resolved