-
-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(handler): fix the bug for create table #mysql50#q.q should return…
… failure and actually return success (#487) [summary] 1.When creating a table in the tianmu engine, add code to determine whether the table name is empty. 2.Add issue corresponding to mtr test case.
- Loading branch information
1 parent
008cc77
commit c6c8f98
Showing
3 changed files
with
16 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
use test; | ||
create table `#mysql50#q.q` (f1 int primary key) engine=tianmu; | ||
ERROR HY000: Got error 1103 from storage engine |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--source include/have_tianmu.inc | ||
use test; | ||
-- error 1030 | ||
create table `#mysql50#q.q` (f1 int primary key) engine=tianmu; |
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