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
f17f7a43
Commit
f17f7a43
authored
Jun 16, 2020
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test dropping of a MEMORY table
parent
d2b852b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
mysql-test/suite/heap/drop.result
mysql-test/suite/heap/drop.result
+3
-0
mysql-test/suite/heap/drop.test
mysql-test/suite/heap/drop.test
+11
-0
No files found.
mysql-test/suite/heap/drop.result
0 → 100644
View file @
f17f7a43
create table t1 (a int) engine=memory;
drop table t1;
drop table t2;
mysql-test/suite/heap/drop.test
0 → 100644
View file @
f17f7a43
create
table
t1
(
a
int
)
engine
=
memory
;
let
$DATADIR
=
`select @@datadir`
;
copy_file
$DATADIR
/
test
/
t1
.
frm
$DATADIR
/
test
/
t2
.
frm
;
#
# drop a newly created MEMORY table
#
drop
table
t1
;
#
# drop a MEMORY table after a server restart (frm only, nothing in memory)
#
drop
table
t2
;
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