Skip to content

Commit 04c75e5

Browse files
committed
Drop test table.
1 parent fc132e6 commit 04c75e5

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

sql/core/src/test/resources/sql-tests/inputs/describe.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ DESC t PARTITION (c='Us');
2222

2323
-- ParseException: PARTITION specification is incomplete
2424
DESC t PARTITION (c='Us', d);
25+
26+
-- DROP TEST TABLE
27+
DROP TABLE t;

sql/core/src/test/resources/sql-tests/results/describe.sql.out

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- Automatically generated by SQLQueryTestSuite
2-
-- Number of queries: 7
2+
-- Number of queries: 8
33

44

55
-- !query 0
@@ -80,3 +80,11 @@ PARTITION specification is incomplete: `d`(line 1, pos 0)
8080
== SQL ==
8181
DESC t PARTITION (c='Us', d)
8282
^^^
83+
84+
85+
-- !query 7
86+
DROP TABLE t
87+
-- !query 7 schema
88+
struct<>
89+
-- !query 7 output
90+

0 commit comments

Comments
 (0)