Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] add a test for dropping table has "-" in its name. refs #1165
- Loading branch information
Showing
2 changed files
with
10 additions
and
14 deletions.
There are no files selected for viewing
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 |
|---|---|---|
| @@ -1,7 +1,5 @@ | ||
| drop table if exists t1, t2, t3; | ||
| create table t1 (c1 int primary key, c2 int, c3 int); | ||
| create table t2 (c1 int primary key, c2 int, c3 int); | ||
| create table t3 (c1 int primary key, c2 int, c3 int); | ||
| drop table t1; | ||
| drop table t2; | ||
| drop table t3; | ||
| drop table if exists alphabet, `with-hyphen`; | ||
| create table alphabet (c1 int primary key, c2 int, c3 int); | ||
| drop table alphabet; | ||
| create table `with-hyphen` (c1 int primary key, c2 int, c3 int); | ||
| drop table `with-hyphen`; |
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