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
d4b5b879
Commit
d4b5b879
authored
Sep 13, 2003
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
"normal" warning in test suite disabled
bad merge fixed
parent
c644376a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
19 deletions
+3
-19
mysql-test/t/isam.test
mysql-test/t/isam.test
+0
-18
mysql-test/t/lock_tables_lost_commit.test
mysql-test/t/lock_tables_lost_commit.test
+1
-1
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+2
-0
No files found.
mysql-test/t/isam.test
View file @
d4b5b879
...
...
@@ -71,24 +71,6 @@ show full columns from t1;
show
index
from
t1
;
drop
table
t1
,
t2
;
#
# Test of some show commands
#
create
table
t1
(
a
int
not
null
primary
key
,
b
int
not
null
,
c
int
not
null
,
key
(
b
,
c
));
insert
into
t1
values
(
1
,
2
,
2
),(
2
,
2
,
3
),(
3
,
2
,
4
),(
4
,
2
,
4
);
create
table
t2
type
=
isam
select
*
from
t1
;
optimize
table
t1
;
check
table
t1
,
t2
;
repair
table
t1
,
t2
;
check
table
t2
,
t1
;
lock
tables
t1
write
;
check
table
t2
,
t1
;
show
columns
from
t1
;
show
full
columns
from
t1
;
show
index
from
t1
;
drop
table
t1
,
t2
;
#
# test of table with huge number of packed fields
#
...
...
mysql-test/t/lock_tables_lost_commit.test
View file @
d4b5b879
...
...
@@ -6,8 +6,8 @@ connect (con2,localhost,root,,);
connection
con1
;
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
create
table
t1
(
a
int
)
type
=
innodb
;
--
enable_warnings
lock
tables
t1
write
;
insert
into
t1
values
(
10
);
disconnect
con1
;
...
...
mysql-test/t/subselect.test
View file @
d4b5b879
...
...
@@ -892,9 +892,11 @@ DROP TABLE t1, t2;
#
# UNION unlocking test
#
--
disable_warnings
create
table
t1
(
a
int
)
type
=
innodb
;
create
table
t2
(
a
int
)
type
=
innodb
;
create
table
t3
(
a
int
)
type
=
innodb
;
--
enable_warnings
insert
into
t1
values
(
1
),(
2
),(
3
),(
4
);
insert
into
t2
values
(
10
),(
20
),(
30
),(
40
);
insert
into
t3
values
(
1
),(
2
),(
10
),(
50
);
...
...
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