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
d384d67a
Commit
d384d67a
authored
Apr 26, 2007
by
df@pippilotta.erinye.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two test cases didn't work without Blackhole compiled into the server.
parent
b353df74
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
mysql-test/t/partition.test
mysql-test/t/partition.test
+8
-0
mysql-test/t/partition_hash.test
mysql-test/t/partition_hash.test
+4
-0
No files found.
mysql-test/t/partition.test
View file @
d384d67a
...
...
@@ -420,9 +420,13 @@ drop table t1;
#
# BUG 14524
#
# Disable warnings to allow this test case to work without
# the Blackhole engine.
--
disable_warnings
CREATE
TABLE
`t1`
(
`id`
int
(
11
)
default
NULL
)
ENGINE
=
BLACKHOLE
DEFAULT
CHARSET
=
latin1
PARTITION
BY
HASH
(
id
)
;
--
enable_warnings
SELECT
*
FROM
t1
;
drop
table
t1
;
...
...
@@ -430,9 +434,13 @@ drop table t1;
#
# BUG 14524
#
# Disable warnings to allow this test case to work without
# the Blackhole engine.
--
disable_warnings
CREATE
TABLE
`t1`
(
`id`
int
(
11
)
default
NULL
)
ENGINE
=
BLACKHOLE
DEFAULT
CHARSET
=
latin1
PARTITION
BY
HASH
(
id
)
;
--
enable_warnings
SELECT
*
FROM
t1
;
drop
table
t1
;
...
...
mysql-test/t/partition_hash.test
View file @
d384d67a
...
...
@@ -129,7 +129,11 @@ drop table t1;
#
# BUG# 14524 Partitions: crash if blackhole
#
# Disable warnings to allow this test case to run without
# the Blackhole storage engine.
--
disable_warnings
CREATE
TABLE
t1
(
s1
int
)
ENGINE
=
BLACKHOLE
PARTITION
BY
HASH
(
s1
);
--
enable_warnings
INSERT
INTO
t1
VALUES
(
0
);
DROP
TABLE
t1
;
...
...
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