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
667a004c
Commit
667a004c
authored
Mar 19, 2009
by
Horst Hunger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reviewed patch for Bug#39862.
parent
169bf745
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
mysql-test/suite/sys_vars/t/concurrent_insert_func.test
mysql-test/suite/sys_vars/t/concurrent_insert_func.test
+7
-1
No files found.
mysql-test/suite/sys_vars/t/concurrent_insert_func.test
View file @
667a004c
...
...
@@ -11,6 +11,11 @@
# Creation Date: 2008-03-07 #
# Author: Salman Rawala #
# #
# Modified: HHunger 2009-02-23 Inserted a wait condition right after the #
# "INSERT ..record_6" to wait for the end of #
# the insert. #
# mleich This test needs some inporovements #
# #
# Description: Test Cases of Dynamic System Variable "concurrent_insert" #
# that checks functionality of this variable #
# #
...
...
@@ -62,7 +67,6 @@ connection test_con1;
INSERT
INTO
t1
(
name
)
VALUES
(
'Record_4'
);
SELECT
*
FROM
t1
;
--
echo
## unlocking tables ##
--
echo
connection
default
;
connection
default
;
...
...
@@ -106,6 +110,8 @@ UNLOCK TABLES;
--
echo
## table contens after UNLOCK ##
SELECT
*
FROM
t1
;
INSERT
INTO
t1
(
name
)
VALUES
(
'Record_6'
);
let
$wait_condition
=
SELECT
COUNT
(
*
)
=
5
FROM
t1
;
--
source
include
/
wait_condition
.
inc
--
echo
connection
test_con1
;
connection
test_con1
;
...
...
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