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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
bd1500fc
Commit
bd1500fc
authored
Jun 21, 2001
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merged test from 4.0
parent
1e76c806
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
mysql-test/r/drop.result
mysql-test/r/drop.result
+2
-0
mysql-test/t/drop.test
mysql-test/t/drop.test
+18
-0
No files found.
mysql-test/r/drop.result
View file @
bd1500fc
n
n
1
1
n
4
Database
Database
foo
foo
mysql
mysql
...
...
mysql-test/t/drop.test
View file @
bd1500fc
...
@@ -10,6 +10,22 @@ insert into t1 values(2);
...
@@ -10,6 +10,22 @@ insert into t1 values(2);
create
table
t1
(
n
int
);
create
table
t1
(
n
int
);
drop
table
t1
;
drop
table
t1
;
select
*
from
t1
;
select
*
from
t1
;
#now test for a bug in drop database - it is important that the name
#of the table is the same as the name of the database - in the original
#code this triggered a bug
drop
database
if
exists
foo
;
create
database
foo
;
drop
database
if
exists
foo
;
create
database
foo
;
create
table
foo
.
foo
(
n
int
);
insert
into
foo
.
foo
values
(
4
);
select
*
from
foo
.
foo
;
drop
database
if
exists
foo
;
create
database
foo
;
drop
database
foo
;
# test drop/create database and FLUSH TABLES WITH READ LOCK
drop
database
if
exists
foo
;
drop
database
if
exists
foo
;
flush
tables
with
read
lock
;
flush
tables
with
read
lock
;
--
error
1209
--
error
1209
...
@@ -23,3 +39,5 @@ drop database foo;
...
@@ -23,3 +39,5 @@ drop database foo;
unlock
tables
;
unlock
tables
;
drop
database
foo
;
drop
database
foo
;
show
databases
;
show
databases
;
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