Skip to content

Commit c2ce223

Browse files
authored
chore: remove useless logic test on explain_ngram_index.test (#17887)
Signed-off-by: Kould <[email protected]>
1 parent dcf9370 commit c2ce223

File tree

1 file changed

+0
-33
lines changed

1 file changed

+0
-33
lines changed

tests/sqllogictests/suites/mode/standalone/ee/explain_ngram_index.test

-33
Original file line numberDiff line numberDiff line change
@@ -103,24 +103,6 @@ Filter
103103
├── push downs: [filters: [is_true(like(t1.content (#1), '%your eggs'))], limit: NONE]
104104
└── estimated rows: 16.00
105105

106-
query T
107-
EXPLAIN SELECT id, content FROM t1 WHERE content LIKE 'A picture%'
108-
----
109-
Filter
110-
├── output columns: [t1.id (#0), t1.content (#1)]
111-
├── filters: [is_true(t1.content (#1) >= 'A picture'), is_true(t1.content (#1) < 'A picturf')]
112-
├── estimated rows: 3.20
113-
└── TableScan
114-
├── table: default.test_ngram_index_db.t1
115-
├── output columns: [id (#0), content (#1)]
116-
├── read rows: 2
117-
├── read size: < 1 KiB
118-
├── partitions total: 8
119-
├── partitions scanned: 1
120-
├── pruning stats: [segments: <range pruning: 1 to 1>, blocks: <range pruning: 8 to 1>]
121-
├── push downs: [filters: [and_filters(t1.content (#1) >= 'A picture', t1.content (#1) < 'A picturf')], limit: NONE]
122-
└── estimated rows: 16.00
123-
124106
query T
125107
EXPLAIN SELECT id, content FROM t1 WHERE content LIKE '%风来%'
126108
----
@@ -218,21 +200,6 @@ TableScan
218200
├── push downs: [filters: [is_true(like(t2.content (#1), '%your eggs'))], limit: NONE]
219201
└── estimated rows: 0.03
220202

221-
query T
222-
EXPLAIN SELECT id, content FROM t2 WHERE content LIKE 'A picture%'
223-
----
224-
TableScan
225-
├── table: default.test_ngram_index_db.t2
226-
├── output columns: [id (#0), content (#1)]
227-
├── read rows: 2
228-
├── read size: < 1 KiB
229-
├── partitions total: 8
230-
├── partitions scanned: 1
231-
├── pruning stats: [segments: <range pruning: 1 to 1>, blocks: <range pruning: 8 to 1>]
232-
├── push downs: [filters: [and_filters(t2.content (#1) >= 'A picture', t2.content (#1) < 'A picturf')], limit: NONE]
233-
└── estimated rows: 3.20
234-
235-
236203
query T
237204
SELECT id, content FROM t1 WHERE content LIKE '%your eggs%'
238205
----

0 commit comments

Comments
 (0)