Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
3039a7c2
Commit
3039a7c2
authored
Jul 12, 2013
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix upgrade.test - update from 5.6
parent
3cd1861a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
mysql-test/r/upgrade.result
mysql-test/r/upgrade.result
+5
-1
mysql-test/t/upgrade.test
mysql-test/t/upgrade.test
+3
-1
No files found.
mysql-test/r/upgrade.result
View file @
3039a7c2
...
@@ -48,10 +48,14 @@ insert into `txu#p#p1` values (1);
...
@@ -48,10 +48,14 @@ insert into `txu#p#p1` values (1);
select * from `txu@0023p@0023p1`;
select * from `txu@0023p@0023p1`;
ERROR 42S02: Table 'test.txu@0023p@0023p1' doesn't exist
ERROR 42S02: Table 'test.txu@0023p@0023p1' doesn't exist
create table `txu@0023p@0023p1` (s1 int);
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`;
select * from `txu#p#p1`;
s1
s1
1
1
drop table `txu@0023p@0023p1`;
drop table `txu#p#p1`;
drop table `txu#p#p1`;
#
#
# Bug#37631 Incorrect key file for table after upgrading from 5.0 to 5.1
# Bug#37631 Incorrect key file for table after upgrading from 5.0 to 5.1
...
...
mysql-test/t/upgrade.test
View file @
3039a7c2
...
@@ -41,9 +41,11 @@ create table `txu#p#p1` (s1 int);
...
@@ -41,9 +41,11 @@ create table `txu#p#p1` (s1 int);
insert
into
`txu#p#p1`
values
(
1
);
insert
into
`txu#p#p1`
values
(
1
);
--
error
1146
--
error
1146
select
*
from
`txu@0023p@0023p1`
;
select
*
from
`txu@0023p@0023p1`
;
--
error
ER_TABLE_EXISTS_ERROR
create
table
`txu@0023p@0023p1`
(
s1
int
);
create
table
`txu@0023p@0023p1`
(
s1
int
);
insert
into
`txu@0023p@0023p1`
values
(
2
);
select
*
from
`txu@0023p@0023p1`
;
select
*
from
`txu#p#p1`
;
select
*
from
`txu#p#p1`
;
drop
table
`txu@0023p@0023p1`
;
drop
table
`txu#p#p1`
;
drop
table
`txu#p#p1`
;
--
echo
#
--
echo
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment