Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.1.0-m1
-
None
Description
In the latest drill merge, select all columns with filters does not return all columns from table. Instead it returns only columns specified in the where clause.
select * from voter where age < 19;
------------
age |
------------
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
18 |
------------
select * from voter where name like '%van%' and age < 30;
----------------------+
age | name |
----------------------+
19 | [B@52aadf7b |
25 | [B@50362ea3 |
----------------------+
Attachments
Issue Links
- Is contained by
-
DRILL-931 Wildcard queries cause problems in certain schemaless situations
- Resolved