mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
fix upgrade.test - update from 5.6
This commit is contained in:
parent
3cd1861a81
commit
3039a7c213
2 changed files with 8 additions and 2 deletions
|
@ -48,10 +48,14 @@ insert into `txu#p#p1` values (1);
|
|||
select * from `txu@0023p@0023p1`;
|
||||
ERROR 42S02: Table 'test.txu@0023p@0023p1' doesn't exist
|
||||
create table `txu@0023p@0023p1` (s1 int);
|
||||
ERROR 42S01: Table '#mysql50#txu@0023p@0023p1' already exists
|
||||
insert into `txu@0023p@0023p1` values (2);
|
||||
select * from `txu@0023p@0023p1`;
|
||||
s1
|
||||
2
|
||||
select * from `txu#p#p1`;
|
||||
s1
|
||||
1
|
||||
drop table `txu@0023p@0023p1`;
|
||||
drop table `txu#p#p1`;
|
||||
#
|
||||
# Bug#37631 Incorrect key file for table after upgrading from 5.0 to 5.1
|
||||
|
|
|
@ -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 #
|
||||
|
|
Loading…
Add table
Reference in a new issue