Skip to content

Commit

Permalink
drop table after finished
Browse files Browse the repository at this point in the history
Signed-off-by: Ruihang Xia <[email protected]>
  • Loading branch information
waynexia committed Dec 26, 2024
1 parent 278125a commit e0e1d58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/cases/standalone/common/select/skipping_index.result
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,7 @@ EXPLAIN ANALYZE SELECT * FROM skipping_table WHERE id = 'id5' ORDER BY `name`;
|_|_| Total rows: 0_|
+-+-+-+

DROP TABLE IF EXISTS skipping_table;

Affected Rows: 0

2 changes: 2 additions & 0 deletions tests/cases/standalone/common/select/skipping_index.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ EXPLAIN ANALYZE SELECT * FROM skipping_table WHERE id = 'id2' ORDER BY `name`;
-- SQLNESS REPLACE (metrics.*) 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;

0 comments on commit e0e1d58

Please sign in to comment.