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
7a340808
Commit
7a340808
authored
Mar 04, 2015
by
Rik Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DB-806 test case lock tables + create select bug
parent
d71c7604
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
mysql-test/suite/tokudb.bugs/r/db806.result
mysql-test/suite/tokudb.bugs/r/db806.result
+9
-0
mysql-test/suite/tokudb.bugs/t/db806.test
mysql-test/suite/tokudb.bugs/t/db806.test
+13
-0
No files found.
mysql-test/suite/tokudb.bugs/r/db806.result
0 → 100644
View file @
7a340808
drop table if exists t1,t3;
CREATE TABLE t3(a int,c int,d int)engine=TOKUDB;
lock table t3 read;
create temporary table t1 engine=tokudb as SELECT 1;
select * from t1;
1
1
unlock tables;
drop table t1,t3;
mysql-test/suite/tokudb.bugs/t/db806.test
0 → 100644
View file @
7a340808
# DB-806 test that lock tables and create select can write rows to the new table
source
include
/
have_tokudb
.
inc
;
disable_warnings
;
drop
table
if
exists
t1
,
t3
;
enable_warnings
;
CREATE
TABLE
t3
(
a
int
,
c
int
,
d
int
)
engine
=
TOKUDB
;
lock
table
t3
read
;
create
temporary
table
t1
engine
=
tokudb
as
SELECT
1
;
select
*
from
t1
;
unlock
tables
;
drop
table
t1
,
t3
;
\ No newline at end of file
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