Skip to content

Commit 49926e1

Browse files
committed
Better test
1 parent 3c8794c commit 49926e1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/queries/0_stateless/02921_parameterized_view_except_queries.sql

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
select '--- Data ---';
2+
3+
DROP VIEW IF EXISTS V_DELTA;
4+
DROP TABLE IF EXISTS users;
5+
26
CREATE TABLE users (uid Int16, name String, age Int16) ENGINE=Memory;
37

48
INSERT INTO users VALUES (1231, 'John', 33);
@@ -61,3 +65,6 @@ where age >= {a3: Int32} AND age <= {a4: Int32}
6165
order by uid;
6266

6367
SELECT * FROM V_DELTA(a1=10, a2=50, a3=10, a4=40);
68+
69+
DROP VIEW V_DELTA;
70+
DROP TABLE users;

0 commit comments

Comments
 (0)