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
970bc8cd
Commit
970bc8cd
authored
Dec 02, 2011
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix failing test cases in 5.5 main suite
parent
5beb816a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
5 deletions
+8
-5
mysql-test/include/mysqld--help.inc
mysql-test/include/mysqld--help.inc
+1
-0
mysql-test/t/archive_plugin.test
mysql-test/t/archive_plugin.test
+3
-2
mysql-test/t/blackhole_plugin.test
mysql-test/t/blackhole_plugin.test
+3
-2
mysql-test/t/shm.test
mysql-test/t/shm.test
+1
-1
No files found.
mysql-test/include/mysqld--help.inc
View file @
970bc8cd
...
...
@@ -47,6 +47,7 @@ perl;
s
/
\b4294967295\b
/
18446744073709551615
/
;
s
/
\b2146435072\b
/
9223372036853727232
/
;
s
/
\b196608\b
/
262144
/
;
s
/
\b4294963200\b
/
18446744073709547520
/
;
foreach
$var
(
@
env
)
{
s
/
$ENV
{
$var
}
/
$var
/
}
next
if
/
use
--
skip
-
(
use
-
)
?
symbolic
-
links
to
disable
/
;
# for valgrind, again
next
if
$skip
;
...
...
mysql-test/t/archive_plugin.test
View file @
970bc8cd
...
...
@@ -4,13 +4,14 @@ if (!$HA_ARCHIVE_SO) {
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
ARCHIVE
;
DROP
TABLE
t1
;
--
replace_regex
/
\
.
dll
/.
so
/
eval
INSTALL
PLUGIN
archive
SONAME
'$HA_ARCHIVE_SO'
;
--
error
1125
--
replace_regex
/
\
.
dll
/.
so
/
eval
INSTALL
PLUGIN
ARCHIVE
SONAME
'$HA_ARCHIVE_SO'
;
UNINSTALL
PLUGIN
archive
;
--
replace_regex
/
\
.
dll
/.
so
/
eval
INSTALL
PLUGIN
archive
SONAME
'$HA_ARCHIVE_SO'
;
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
ARCHIVE
;
...
...
mysql-test/t/blackhole_plugin.test
View file @
970bc8cd
...
...
@@ -4,13 +4,14 @@ if (!$HA_BLACKHOLE_SO) {
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
BLACKHOLE
;
DROP
TABLE
t1
;
--
replace_regex
/
\
.
dll
/.
so
/
eval
INSTALL
PLUGIN
blackhole
SONAME
'$HA_BLACKHOLE_SO'
;
--
error
1125
--
replace_regex
/
\
.
dll
/.
so
/
eval
INSTALL
PLUGIN
BLACKHOLE
SONAME
'$HA_BLACKHOLE_SO'
;
UNINSTALL
PLUGIN
blackhole
;
--
replace_regex
/
\
.
dll
/.
so
/
eval
INSTALL
PLUGIN
blackhole
SONAME
'$HA_BLACKHOLE_SO'
;
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
BLACKHOLE
;
...
...
mysql-test/t/shm.test
View file @
970bc8cd
...
...
@@ -24,7 +24,7 @@ disconnect shm_con;
#
# Bug #24924: shared-memory-base-name that is too long causes buffer overflow
#
--
exec
$MYSQLADMIN
--
no
-
defaults
--
user
=
root
--
host
=
127.0
.
0.1
--
port
=
$MASTER_MYPORT
--
shared
-
memory
-
base
-
name
=
HeyMrBaseNameXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ping
--
exec
$MYSQLADMIN
--
user
=
root
--
host
=
127.0
.
0.1
--
port
=
$MASTER_MYPORT
--
shared
-
memory
-
base
-
name
=
HeyMrBaseNameXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ping
#
# Bug #33899: Deadlock in mysql_real_query with shared memory connections
...
...
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