Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.16.0
-
None
Description
Data:
Unzip the attached archive: lineitempart.zip.
Steps:
- Set exec.storage.enable_v3_text_reader=true
- Run the following query:
select columns[0], dir0 from dfs.tmp.`/drill/data/lineitempart` where dir0=1994 and columns[0]>29766 order by columns[0] limit 1;
Expected result:
+--------+------+ | EXPR$0 | dir0 | +--------+------+ | 29767 | 1994 | +--------+------+
Actual result:
+--------+------+ | EXPR$0 | dir0 | +--------+------+ | 29767 | | +--------+------+
Note: If change filter a bit so it doesn't return all lines, everything is ok:
apache drill> select columns[0], dir0 from dfs.tmp.`/drill/data/lineitempart` where dir0=1994 and columns[0]>29767 order by columns[0] limit 1; +--------+------+ | EXPR$0 | dir0 | +--------+------+ | 29792 | 1994 | +--------+------+
Attachments
Attachments
Issue Links
- links to