diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-07-12 10:21:14 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-07-12 10:21:14 +0200 |
commit | 3039a7c2130e3608b9adf60792fd936ef2e20b81 (patch) | |
tree | d1aab05d4cfb065956acd153684896275e8f569f /mysql-test/t/upgrade.test | |
parent | 3cd1861a81f5c858014c8bbb67440daaffb05cce (diff) | |
download | mariadb-git-3039a7c2130e3608b9adf60792fd936ef2e20b81.tar.gz |
fix upgrade.test - update from 5.6
Diffstat (limited to 'mysql-test/t/upgrade.test')
-rw-r--r-- | mysql-test/t/upgrade.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/t/upgrade.test b/mysql-test/t/upgrade.test index a8c875ef764..400ce07b7fd 100644 --- a/mysql-test/t/upgrade.test +++ b/mysql-test/t/upgrade.test @@ -41,9 +41,11 @@ create table `txu#p#p1` (s1 int); insert into `txu#p#p1` values (1); --error 1146 select * from `txu@0023p@0023p1`; ---error ER_TABLE_EXISTS_ERROR create table `txu@0023p@0023p1` (s1 int); +insert into `txu@0023p@0023p1` values (2); +select * from `txu@0023p@0023p1`; select * from `txu#p#p1`; +drop table `txu@0023p@0023p1`; drop table `txu#p#p1`; --echo # |