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
c9b52803
Commit
c9b52803
authored
Oct 19, 2019
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-20466: fix of embedded test suite
parent
b7bc8c3f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
35 deletions
+41
-35
mysql-test/r/processlist.result
mysql-test/r/processlist.result
+0
-6
mysql-test/r/processlist_notembedded.result
mysql-test/r/processlist_notembedded.result
+7
-0
mysql-test/t/processlist.test
mysql-test/t/processlist.test
+0
-29
mysql-test/t/processlist_notembedded.test
mysql-test/t/processlist_notembedded.test
+34
-0
No files found.
mysql-test/r/processlist.result
View file @
c9b52803
...
...
@@ -17,10 +17,4 @@ select command, time < 5 from information_schema.processlist where id != connect
command time < 5
Sleep 1
set debug_sync='reset';
#
# MDEV-20466: SHOW PROCESSLIST truncates query text on \0 bytes
#
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync';
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
SET DEBUG_SYNC = 'RESET';
End of 5.5 tests
mysql-test/r/processlist_notembedded.result
0 → 100644
View file @
c9b52803
#
# MDEV-20466: SHOW PROCESSLIST truncates query text on \0 bytes
#
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync';
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
SET DEBUG_SYNC = 'RESET';
End of 5.5 tests
mysql-test/t/processlist.test
View file @
c9b52803
...
...
@@ -51,33 +51,4 @@ select command, time < 5 from information_schema.processlist where id != connect
disconnect
con1
;
set
debug_sync
=
'reset'
;
--
echo
#
--
echo
# MDEV-20466: SHOW PROCESSLIST truncates query text on \0 bytes
--
echo
#
connect
(
con1
,
localhost
,
root
,,);
connection
con1
;
let
$q
=
`select CONCAT("SELECT user FROM mysql.user WHERE user ='some", CHAR(0), "' or sleep (30)")`
;
SET
DEBUG_SYNC
=
'before_join_optimize SIGNAL in_sync'
;
--
disable_query_log
--
send_eval
$q
;
--
enable_query_log
connection
default
;
SET
DEBUG_SYNC
=
'now WAIT_FOR in_sync'
;
exec
$MYSQL
test
-
e
"SHOW PROCESSLIST"
>
$MYSQLTEST_VARDIR
/
tmp
/
MDEV
-
20466.
text
;
let
SEARCH_FILE
=
$MYSQLTEST_VARDIR
/
tmp
/
MDEV
-
20466.
text
;
let
SEARCH_PATTERN
=
sleep
;
source
include
/
search_pattern_in_file
.
inc
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
//MDEV-20466.text;
disconnect
con1
;
SET
DEBUG_SYNC
=
'RESET'
;
--
echo
End
of
5.5
tests
mysql-test/t/processlist_notembedded.test
0 → 100644
View file @
c9b52803
source
include
/
have_debug
.
inc
;
source
include
/
have_debug_sync
.
inc
;
source
include
/
not_embedded
.
inc
;
--
echo
#
--
echo
# MDEV-20466: SHOW PROCESSLIST truncates query text on \0 bytes
--
echo
#
connect
(
con1
,
localhost
,
root
,,);
connection
con1
;
let
$q
=
`select CONCAT("SELECT user FROM mysql.user WHERE user ='some", CHAR(0), "' or sleep (30)")`
;
SET
DEBUG_SYNC
=
'before_join_optimize SIGNAL in_sync'
;
--
disable_query_log
--
send_eval
$q
;
--
enable_query_log
connection
default
;
SET
DEBUG_SYNC
=
'now WAIT_FOR in_sync'
;
exec
$MYSQL
test
-
e
"SHOW PROCESSLIST"
>
$MYSQLTEST_VARDIR
/
tmp
/
MDEV
-
20466.
text
;
let
SEARCH_FILE
=
$MYSQLTEST_VARDIR
/
tmp
/
MDEV
-
20466.
text
;
let
SEARCH_PATTERN
=
sleep
;
source
include
/
search_pattern_in_file
.
inc
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
//MDEV-20466.text;
disconnect
con1
;
SET
DEBUG_SYNC
=
'RESET'
;
--
echo
End
of
5.5
tests
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