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
2d924f07
Commit
2d924f07
authored
Jul 26, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
results updated
parent
1876125e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
40 deletions
+40
-40
mysql-test/r/lowercase_table2.result
mysql-test/r/lowercase_table2.result
+40
-40
No files found.
mysql-test/r/lowercase_table2.result
View file @
2d924f07
...
@@ -4,11 +4,11 @@ DROP DATABASE IF EXISTS `test_$1`;
...
@@ -4,11 +4,11 @@ DROP DATABASE IF EXISTS `test_$1`;
CREATE TABLE T1 (a int);
CREATE TABLE T1 (a int);
INSERT INTO T1 VALUES (1);
INSERT INTO T1 VALUES (1);
SHOW TABLES LIKE "T1";
SHOW TABLES LIKE "T1";
Tables_in_test (T1)
Tables_in_test (T1)
table_type
T1
T1
BASE TABLE
SHOW TABLES LIKE "t1";
SHOW TABLES LIKE "t1";
Tables_in_test (t1)
Tables_in_test (t1)
table_type
T1
T1
BASE TABLE
SHOW CREATE TABLE T1;
SHOW CREATE TABLE T1;
Table Create Table
Table Create Table
T1 CREATE TABLE `T1` (
T1 CREATE TABLE `T1` (
...
@@ -16,37 +16,37 @@ T1 CREATE TABLE `T1` (
...
@@ -16,37 +16,37 @@ T1 CREATE TABLE `T1` (
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
RENAME TABLE T1 TO T2;
RENAME TABLE T1 TO T2;
SHOW TABLES LIKE "T2";
SHOW TABLES LIKE "T2";
Tables_in_test (T2)
Tables_in_test (T2)
table_type
T2
T2
BASE TABLE
SELECT * FROM t2;
SELECT * FROM t2;
a
a
1
1
RENAME TABLE T2 TO t3;
RENAME TABLE T2 TO t3;
SHOW TABLES LIKE "T3";
SHOW TABLES LIKE "T3";
Tables_in_test (T3)
Tables_in_test (T3)
table_type
t3
t3
BASE TABLE
RENAME TABLE T3 TO T1;
RENAME TABLE T3 TO T1;
SHOW TABLES LIKE "T1";
SHOW TABLES LIKE "T1";
Tables_in_test (T1)
Tables_in_test (T1)
table_type
T1
T1
BASE TABLE
ALTER TABLE T1 add b int;
ALTER TABLE T1 add b int;
SHOW TABLES LIKE "T1";
SHOW TABLES LIKE "T1";
Tables_in_test (T1)
Tables_in_test (T1)
table_type
T1
T1
BASE TABLE
ALTER TABLE T1 RENAME T2;
ALTER TABLE T1 RENAME T2;
SHOW TABLES LIKE "T2";
SHOW TABLES LIKE "T2";
Tables_in_test (T2)
Tables_in_test (T2)
table_type
T2
T2
BASE TABLE
LOCK TABLE T2 WRITE;
LOCK TABLE T2 WRITE;
ALTER TABLE T2 drop b;
ALTER TABLE T2 drop b;
SHOW TABLES LIKE "T2";
SHOW TABLES LIKE "T2";
Tables_in_test (T2)
Tables_in_test (T2)
table_type
T2
T2
BASE TABLE
UNLOCK TABLES;
UNLOCK TABLES;
RENAME TABLE T2 TO T1;
RENAME TABLE T2 TO T1;
SHOW TABLES LIKE "T1";
SHOW TABLES LIKE "T1";
Tables_in_test (T1)
Tables_in_test (T1)
table_type
T1
T1
BASE TABLE
SELECT * from T1;
SELECT * from T1;
a
a
1
1
...
@@ -59,11 +59,11 @@ DROP DATABASE `test_$1`;
...
@@ -59,11 +59,11 @@ DROP DATABASE `test_$1`;
CREATE TABLE T1 (a int) engine=innodb;
CREATE TABLE T1 (a int) engine=innodb;
INSERT INTO T1 VALUES (1);
INSERT INTO T1 VALUES (1);
SHOW TABLES LIKE "T1";
SHOW TABLES LIKE "T1";
Tables_in_test (T1)
Tables_in_test (T1)
table_type
T1
T1
BASE TABLE
SHOW TABLES LIKE "t1";
SHOW TABLES LIKE "t1";
Tables_in_test (t1)
Tables_in_test (t1)
table_type
T1
T1
BASE TABLE
SHOW CREATE TABLE T1;
SHOW CREATE TABLE T1;
Table Create Table
Table Create Table
T1 CREATE TABLE `T1` (
T1 CREATE TABLE `T1` (
...
@@ -71,37 +71,37 @@ T1 CREATE TABLE `T1` (
...
@@ -71,37 +71,37 @@ T1 CREATE TABLE `T1` (
) ENGINE=InnoDB DEFAULT CHARSET=latin1
) ENGINE=InnoDB DEFAULT CHARSET=latin1
RENAME TABLE T1 TO T2;
RENAME TABLE T1 TO T2;
SHOW TABLES LIKE "T2";
SHOW TABLES LIKE "T2";
Tables_in_test (T2)
Tables_in_test (T2)
table_type
t2
t2
BASE TABLE
SELECT * FROM t2;
SELECT * FROM t2;
a
a
1
1
RENAME TABLE T2 TO t3;
RENAME TABLE T2 TO t3;
SHOW TABLES LIKE "T3";
SHOW TABLES LIKE "T3";
Tables_in_test (T3)
Tables_in_test (T3)
table_type
t3
t3
BASE TABLE
RENAME TABLE T3 TO T1;
RENAME TABLE T3 TO T1;
SHOW TABLES LIKE "T1";
SHOW TABLES LIKE "T1";
Tables_in_test (T1)
Tables_in_test (T1)
table_type
t1
t1
BASE TABLE
ALTER TABLE T1 add b int;
ALTER TABLE T1 add b int;
SHOW TABLES LIKE "T1";
SHOW TABLES LIKE "T1";
Tables_in_test (T1)
Tables_in_test (T1)
table_type
t1
t1
BASE TABLE
ALTER TABLE T1 RENAME T2;
ALTER TABLE T1 RENAME T2;
SHOW TABLES LIKE "T2";
SHOW TABLES LIKE "T2";
Tables_in_test (T2)
Tables_in_test (T2)
table_type
t2
t2
BASE TABLE
LOCK TABLE T2 WRITE;
LOCK TABLE T2 WRITE;
ALTER TABLE T2 drop b;
ALTER TABLE T2 drop b;
SHOW TABLES LIKE "T2";
SHOW TABLES LIKE "T2";
Tables_in_test (T2)
Tables_in_test (T2)
table_type
t2
t2
BASE TABLE
UNLOCK TABLES;
UNLOCK TABLES;
RENAME TABLE T2 TO T1;
RENAME TABLE T2 TO T1;
SHOW TABLES LIKE "T1";
SHOW TABLES LIKE "T1";
Tables_in_test (T1)
Tables_in_test (T1)
table_type
t1
t1
BASE TABLE
SELECT * from T1;
SELECT * from T1;
a
a
1
1
...
@@ -124,10 +124,10 @@ drop table T1;
...
@@ -124,10 +124,10 @@ drop table T1;
create table T1 (A int);
create table T1 (A int);
alter table T1 add index (A);
alter table T1 add index (A);
show tables like 'T1%';
show tables like 'T1%';
Tables_in_test (T1%)
Tables_in_test (T1%)
table_type
T1
T1
BASE TABLE
alter table t1 add index (A);
alter table t1 add index (A);
show tables like 't1%';
show tables like 't1%';
Tables_in_test (t1%)
Tables_in_test (t1%)
table_type
t1
t1
BASE TABLE
drop table t1;
drop table t1;
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