Skip to content

Commit

Permalink
no limit
Browse files Browse the repository at this point in the history
  • Loading branch information
akuzm committed May 23, 2024
1 parent e8dfb2a commit e5a660b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tsl/test/sql/include/transparent_decompression_query.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ FROM :TEST_TABLE
WHERE device_id IN (1, 2)
ORDER BY time,
device_id
LIMIT 11;
;

-- test empty targetlist
:PREFIX
Expand All @@ -53,22 +53,22 @@ SELECT v1
FROM :TEST_TABLE
WHERE device_id = 1
ORDER BY v1
LIMIT 11;
;

-- test order not present in targetlist
:PREFIX
SELECT v2
FROM :TEST_TABLE
WHERE device_id = 1
ORDER BY v1
LIMIT 11;
;

-- test column with all NULL
:PREFIX
SELECT v3
FROM :TEST_TABLE
WHERE device_id = 1
LIMIT 11;
;

--
-- test qual pushdown
Expand Down

0 comments on commit e5a660b

Please sign in to comment.