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
23af1755
Commit
23af1755
authored
Dec 30, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing rpl_temporary.test for FreeBSD/Linux thread-order (it add 4 sec. sleep)
parent
49efae72
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
mysql-test/r/rpl_temporary.result
mysql-test/r/rpl_temporary.result
+2
-2
mysql-test/t/rpl_temporary.test
mysql-test/t/rpl_temporary.test
+5
-0
No files found.
mysql-test/r/rpl_temporary.result
View file @
23af1755
...
...
@@ -31,8 +31,8 @@ master-bin.000001 290 Query 1 290 use `test`; create temporary table t3(f int)
master-bin.000001 357 Query 1 357 use `test`; insert into t3 select * from t1 where f<6
master-bin.000001 433 Query 1 433 use `test`; create temporary table t3(f int)
master-bin.000001 500 Query 1 500 use `test`; insert into t2 select count(*) from t3
master-bin.000001 573 Query 1 573 use `test`;
drop temporary table t3
master-bin.000001 6
31 Query 1 631 use `test`; insert into t3 select * from t1 where f>=4
master-bin.000001 573 Query 1 573 use `test`;
insert into t3 select * from t1 where f>=4
master-bin.000001 6
50 Query 1 650 use `test`; drop temporary table t3
master-bin.000001 708 Query 1 708 use `test`; insert into t2 select count(*) from t3
master-bin.000001 781 Query 1 781 use `test`; drop temporary table t3
drop table if exists t1;
...
...
mysql-test/t/rpl_temporary.test
View file @
23af1755
...
...
@@ -12,18 +12,23 @@ insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
connection
con1
;
create
temporary
table
t3
(
f
int
);
insert
into
t3
select
*
from
t1
where
f
<
6
;
sleep
1
;
connection
con2
;
create
temporary
table
t3
(
f
int
);
sleep
1
;
connection
con1
;
insert
into
t2
select
count
(
*
)
from
t3
;
sleep
1
;
connection
con2
;
insert
into
t3
select
*
from
t1
where
f
>=
4
;
sleep
1
;
connection
con1
;
drop
temporary
table
t3
;
sleep
1
;
connection
con2
;
insert
into
t2
select
count
(
*
)
from
t3
;
...
...
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