-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add sqlness test for bloom filter index (#5240)
* feat: add sqlness test for bloom filter index Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * drop table after finished Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * redact more variables Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
- Loading branch information
Showing
4 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
99 changes: 99 additions & 0 deletions
99
tests/cases/standalone/common/select/skipping_index.result
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
create table | ||
skipping_table ( | ||
ts timestamp time index, | ||
id string skipping index, | ||
`name` string skipping index | ||
with | ||
(granularity = 8192), | ||
); | ||
|
||
Affected Rows: 0 | ||
|
||
INSERT INTO skipping_table VALUES (1664356800000, 'id1', 'name1'); | ||
|
||
Affected Rows: 1 | ||
|
||
ADMIN FLUSH_TABLE('skipping_table'); | ||
|
||
+-------------------------------------+ | ||
| ADMIN FLUSH_TABLE('skipping_table') | | ||
+-------------------------------------+ | ||
| 0 | | ||
+-------------------------------------+ | ||
|
||
INSERT INTO skipping_table VALUES (1664356801000, 'id2', 'name2'); | ||
|
||
Affected Rows: 1 | ||
|
||
ADMIN FLUSH_TABLE('skipping_table'); | ||
|
||
+-------------------------------------+ | ||
| ADMIN FLUSH_TABLE('skipping_table') | | ||
+-------------------------------------+ | ||
| 0 | | ||
+-------------------------------------+ | ||
|
||
INSERT INTO skipping_table VALUES (1664356802000, 'id3', 'name3'); | ||
|
||
Affected Rows: 1 | ||
|
||
ADMIN FLUSH_TABLE('skipping_table'); | ||
|
||
+-------------------------------------+ | ||
| ADMIN FLUSH_TABLE('skipping_table') | | ||
+-------------------------------------+ | ||
| 0 | | ||
+-------------------------------------+ | ||
|
||
-- SQLNESS REPLACE (metrics.*) REDACTED | ||
-- SQLNESS REPLACE (RoundRobinBatch.*) REDACTED | ||
-- SQLNESS REPLACE (-+) - | ||
-- SQLNESS REPLACE (\s\s+) _ | ||
-- SQLNESS REPLACE (peers.*) REDACTED | ||
-- SQLNESS REPLACE region=\d+\(\d+,\s+\d+\) region=REDACTED | ||
EXPLAIN ANALYZE SELECT * FROM skipping_table WHERE id = 'id2' ORDER BY `name`; | ||
|
||
+-+-+-+ | ||
| stage | node | plan_| | ||
+-+-+-+ | ||
| 0_| 0_|_MergeScanExec: REDACTED | ||
|_|_|_| | ||
| 1_| 0_|_SortPreservingMergeExec: [name@2 ASC NULLS LAST] REDACTED | ||
|_|_|_CoalesceBatchesExec: target_batch_size=8192 REDACTED | ||
|_|_|_SortExec: expr=[name@2 ASC NULLS LAST], preserve_partitioning=[true] REDACTED | ||
|_|_|_CoalesceBatchesExec: target_batch_size=8192 REDACTED | ||
|_|_|_FilterExec: id@1 = id2 REDACTED | ||
|_|_|_RepartitionExec: partitioning=REDACTED | ||
|_|_|_SeqScan: region=REDACTED, partition_count=3 (0 memtable ranges, 3 file 3 ranges) REDACTED | ||
|_|_|_| | ||
|_|_| Total rows: 1_| | ||
+-+-+-+ | ||
|
||
-- SQLNESS REPLACE (metrics.*) REDACTED | ||
-- SQLNESS REPLACE (RoundRobinBatch.*) REDACTED | ||
-- SQLNESS REPLACE (-+) - | ||
-- SQLNESS REPLACE (\s\s+) _ | ||
-- SQLNESS REPLACE (peers.*) REDACTED | ||
-- SQLNESS REPLACE region=\d+\(\d+,\s+\d+\) region=REDACTED | ||
EXPLAIN ANALYZE SELECT * FROM skipping_table WHERE id = 'id5' ORDER BY `name`; | ||
|
||
+-+-+-+ | ||
| stage | node | plan_| | ||
+-+-+-+ | ||
| 0_| 0_|_MergeScanExec: REDACTED | ||
|_|_|_| | ||
| 1_| 0_|_SortPreservingMergeExec: [name@2 ASC NULLS LAST] REDACTED | ||
|_|_|_CoalesceBatchesExec: target_batch_size=8192 REDACTED | ||
|_|_|_SortExec: expr=[name@2 ASC NULLS LAST], preserve_partitioning=[true] REDACTED | ||
|_|_|_CoalesceBatchesExec: target_batch_size=8192 REDACTED | ||
|_|_|_FilterExec: id@1 = id5 REDACTED | ||
|_|_|_RepartitionExec: partitioning=REDACTED | ||
|_|_|_SeqScan: region=REDACTED, partition_count=3 (0 memtable ranges, 3 file 3 ranges) REDACTED | ||
|_|_|_| | ||
|_|_| Total rows: 0_| | ||
+-+-+-+ | ||
|
||
DROP TABLE IF EXISTS skipping_table; | ||
|
||
Affected Rows: 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
create table | ||
skipping_table ( | ||
ts timestamp time index, | ||
id string skipping index, | ||
`name` string skipping index | ||
with | ||
(granularity = 8192), | ||
); | ||
|
||
INSERT INTO skipping_table VALUES (1664356800000, 'id1', 'name1'); | ||
|
||
ADMIN FLUSH_TABLE('skipping_table'); | ||
|
||
INSERT INTO skipping_table VALUES (1664356801000, 'id2', 'name2'); | ||
|
||
ADMIN FLUSH_TABLE('skipping_table'); | ||
|
||
INSERT INTO skipping_table VALUES (1664356802000, 'id3', 'name3'); | ||
|
||
ADMIN FLUSH_TABLE('skipping_table'); | ||
|
||
-- SQLNESS REPLACE (metrics.*) REDACTED | ||
-- SQLNESS REPLACE (RoundRobinBatch.*) REDACTED | ||
-- SQLNESS REPLACE (-+) - | ||
-- SQLNESS REPLACE (\s\s+) _ | ||
-- SQLNESS REPLACE (peers.*) REDACTED | ||
-- SQLNESS REPLACE region=\d+\(\d+,\s+\d+\) region=REDACTED | ||
EXPLAIN ANALYZE SELECT * FROM skipping_table WHERE id = 'id2' ORDER BY `name`; | ||
|
||
-- SQLNESS REPLACE (metrics.*) REDACTED | ||
-- SQLNESS REPLACE (RoundRobinBatch.*) REDACTED | ||
-- SQLNESS REPLACE (-+) - | ||
-- SQLNESS REPLACE (\s\s+) _ | ||
-- SQLNESS REPLACE (peers.*) REDACTED | ||
-- SQLNESS REPLACE region=\d+\(\d+,\s+\d+\) region=REDACTED | ||
EXPLAIN ANALYZE SELECT * FROM skipping_table WHERE id = 'id5' ORDER BY `name`; | ||
|
||
DROP TABLE IF EXISTS skipping_table; |