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
a633c455
Commit
a633c455
authored
Apr 09, 2010
by
Vasil Dimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert InnoDB Plugin tests to include have_innodb_plugin.inc.
This also instructs mtr to transparently load the plugin.
parent
02c597e7
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
mysql-test/suite/innodb_plugin/t/innodb-use-sys-malloc.test
mysql-test/suite/innodb_plugin/t/innodb-use-sys-malloc.test
+2
-2
mysql-test/suite/innodb_plugin/t/innodb_bug44369.test
mysql-test/suite/innodb_plugin/t/innodb_bug44369.test
+1
-1
mysql-test/suite/innodb_plugin/t/innodb_bug46000.test
mysql-test/suite/innodb_plugin/t/innodb_bug46000.test
+1
-1
mysql-test/suite/innodb_plugin/t/innodb_bug46676.test
mysql-test/suite/innodb_plugin/t/innodb_bug46676.test
+1
-1
mysql-test/suite/innodb_plugin/t/innodb_bug47167.test
mysql-test/suite/innodb_plugin/t/innodb_bug47167.test
+1
-1
mysql-test/suite/innodb_plugin/t/innodb_bug47621.test
mysql-test/suite/innodb_plugin/t/innodb_bug47621.test
+1
-1
mysql-test/suite/innodb_plugin/t/innodb_bug47622.test
mysql-test/suite/innodb_plugin/t/innodb_bug47622.test
+1
-1
mysql-test/suite/innodb_plugin/t/innodb_bug47777.test
mysql-test/suite/innodb_plugin/t/innodb_bug47777.test
+1
-1
mysql-test/suite/innodb_plugin/t/innodb_bug51378.test
mysql-test/suite/innodb_plugin/t/innodb_bug51378.test
+1
-1
No files found.
mysql-test/suite/innodb_plugin/t/innodb-use-sys-malloc.test
View file @
a633c455
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
#display current value of innodb_use_sys_malloc
SELECT
@@
GLOBAL
.
innodb_use_sys_malloc
;
...
...
@@ -22,7 +22,7 @@ create table t1(a int not null) engine=innodb DEFAULT CHARSET=latin1;
insert
into
t1
values
(
1
),(
2
),(
3
),(
4
),(
5
),(
6
),(
7
);
select
*
from
t1
;
drop
table
t1
;
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
#display current value of innodb_use_sys_malloc
SELECT
@@
GLOBAL
.
innodb_use_sys_malloc
;
...
...
mysql-test/suite/innodb_plugin/t/innodb_bug44369.test
View file @
a633c455
...
...
@@ -3,7 +3,7 @@
# some innodb internal reserved key words,
# both case sensitively and insensitely.
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
# This create table operation should fail.
--
error
ER_WRONG_COLUMN_NAME
...
...
mysql-test/suite/innodb_plugin/t/innodb_bug46000.test
View file @
a633c455
...
...
@@ -3,7 +3,7 @@
# "GEN_CLUST_INDEX", which is the reserved
# name for innodb default primary index.
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
# This 'create table' operation should fail because of
# using the reserve name as its index name.
...
...
mysql-test/suite/innodb_plugin/t/innodb_bug46676.test
View file @
a633c455
...
...
@@ -2,7 +2,7 @@
# It is reproducible with InnoDB plugin 1.0.4 + MySQL 5.1.37.
# But no longer reproducible after MySQL 5.1.38 (with plugin 1.0.5).
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
SET
foreign_key_checks
=
0
;
CREATE
TABLE
t1
(
id
int
,
foreign
key
(
id
)
references
t2
(
id
))
ENGINE
=
INNODB
;
...
...
mysql-test/suite/innodb_plugin/t/innodb_bug47167.test
View file @
a633c455
...
...
@@ -3,7 +3,7 @@
# "innodb_file_format_check" with a
# user-Defined Variable.
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
# Save the value (Antelope) in 'innodb_file_format_check' to
# 'old_innodb_file_format_check'
...
...
mysql-test/suite/innodb_plugin/t/innodb_bug47621.test
View file @
a633c455
...
...
@@ -2,7 +2,7 @@
# not result in column definition inconsistency between MySQL and
# InnoDB
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
CREATE
TABLE
bug47621
(
salesperson
INT
)
ENGINE
=
InnoDB
;
...
...
mysql-test/suite/innodb_plugin/t/innodb_bug47622.test
View file @
a633c455
...
...
@@ -4,7 +4,7 @@
# We resolve the problem by sync the index sequence
# up when opening the table.
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
connect
(
a
,
localhost
,
root
,,);
connect
(
b
,
localhost
,
root
,,);
...
...
mysql-test/suite/innodb_plugin/t/innodb_bug47777.test
View file @
a633c455
...
...
@@ -4,7 +4,7 @@
# should follow the process for the BLOB
# datatype as well.
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
create
table
bug47777
(
c2
linestring
not
null
,
primary
key
(
c2
(
1
)))
engine
=
innodb
;
...
...
mysql-test/suite/innodb_plugin/t/innodb_bug51378.test
View file @
a633c455
...
...
@@ -9,7 +9,7 @@
# will be created as primary index
# Following queries test various scenario, no mismatch
# error message should be printed.
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb_plugin
.
inc
# Create a table contains a BLOB column
create
table
bug51378
(
...
...
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