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
dfdb972e
Commit
dfdb972e
authored
Oct 31, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.1-maint
into mysql.com:/usr/home/ram/work/bug23412/my41-bug23412
parents
d2c90fcb
9711d722
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
4 deletions
+33
-4
mysql-test/include/wait_for_query_to_suceed.inc
mysql-test/include/wait_for_query_to_suceed.inc
+25
-0
mysql-test/t/rename.test
mysql-test/t/rename.test
+8
-4
No files found.
mysql-test/include/wait_for_query_to_suceed.inc
0 → 100644
View file @
dfdb972e
#
# Run a query over and over until it suceeds ot timeout occurs
#
let
$counter
=
100
;
disable_abort_on_error
;
disable_query_log
;
disable_result_log
;
eval
$query
;
while
(
$mysql_errno
)
{
eval
$query
;
sleep
0.1
;
dec
$counter
;
if
(
!
$counter
)
{
die
(
"Waited too long for query to suceed"
);
}
}
enable_abort_on_error
;
enable_query_log
;
enable_result_log
;
mysql-test/t/rename.test
View file @
dfdb972e
...
...
@@ -43,8 +43,8 @@ select * from t3;
drop
table
if
exists
t1
,
t2
,
t3
,
t4
;
#
#
Test-case for Bug #2397 RENAME TABLES is not blocked by
#
FLUSH TABLES WITH READ LOCK
#
Bug #2397 RENAME TABLES is not blocked by
# FLUSH TABLES WITH READ LOCK
#
connect
(
con1
,
localhost
,
root
,,);
...
...
@@ -58,10 +58,14 @@ FLUSH TABLES WITH READ LOCK;
connection
con1
;
send
RENAME
TABLE
t1
TO
t2
,
t3
to
t4
;
connection
con2
;
sleep
1
;
show
tables
;
UNLOCK
TABLES
;
sleep
1
;
# Wait for the the tables to be renamed
# i.e the query below succeds
let
$query
=
select
*
from
t2
,
t4
;
source
include
/
wait_for_query_to_suceed
.
inc
;
show
tables
;
drop
table
t2
,
t4
;
...
...
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