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
9f9b8cfc
Commit
9f9b8cfc
authored
Jan 16, 2012
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing sys_vars tests for InnoDB variables.
parent
ae3962d1
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
234 additions
and
6 deletions
+234
-6
mysql-test/suite/sys_vars/r/all_vars.result
mysql-test/suite/sys_vars/r/all_vars.result
+0
-2
mysql-test/suite/sys_vars/r/innodb_change_buffering_debug_basic.result
...ite/sys_vars/r/innodb_change_buffering_debug_basic.result
+64
-0
mysql-test/suite/sys_vars/r/innodb_trx_rseg_n_slots_debug_basic.result
...ite/sys_vars/r/innodb_trx_rseg_n_slots_debug_basic.result
+65
-0
mysql-test/suite/sys_vars/t/all_vars.test
mysql-test/suite/sys_vars/t/all_vars.test
+0
-4
mysql-test/suite/sys_vars/t/innodb_change_buffering_debug_basic.test
...suite/sys_vars/t/innodb_change_buffering_debug_basic.test
+52
-0
mysql-test/suite/sys_vars/t/innodb_trx_rseg_n_slots_debug_basic.test
...suite/sys_vars/t/innodb_trx_rseg_n_slots_debug_basic.test
+53
-0
No files found.
mysql-test/suite/sys_vars/r/all_vars.result
View file @
9f9b8cfc
...
...
@@ -3,8 +3,6 @@ create table t2 (variable_name text);
load data infile "MYSQLTEST_VARDIR/tmp/sys_vars.all_vars.txt" into table t1;
insert into t2 select variable_name from information_schema.global_variables;
insert into t2 select variable_name from information_schema.session_variables;
delete from t2 where variable_name='innodb_change_buffering_debug';
delete from t2 where variable_name='innodb_trx_rseg_n_slots_debug';
update t2 set variable_name= replace(variable_name, "PERFORMANCE_SCHEMA_", "PFS_");
select variable_name as `There should be *no* long test name listed below:` from t2
where length(variable_name) > 50;
...
...
mysql-test/suite/sys_vars/r/innodb_change_buffering_debug_basic.result
0 → 100644
View file @
9f9b8cfc
SET @start_global_value = @@global.innodb_change_buffering_debug;
SELECT @start_global_value;
@start_global_value
0
select @@global.innodb_change_buffering_debug in (0, 1);
@@global.innodb_change_buffering_debug in (0, 1)
1
select @@global.innodb_change_buffering_debug;
@@global.innodb_change_buffering_debug
0
select @@session.innodb_change_buffering_debug;
ERROR HY000: Variable 'innodb_change_buffering_debug' is a GLOBAL variable
show global variables like 'innodb_change_buffering_debug';
Variable_name Value
innodb_change_buffering_debug 0
show session variables like 'innodb_change_buffering_debug';
Variable_name Value
innodb_change_buffering_debug 0
select * from information_schema.global_variables where variable_name='innodb_change_buffering_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_CHANGE_BUFFERING_DEBUG 0
select * from information_schema.session_variables where variable_name='innodb_change_buffering_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_CHANGE_BUFFERING_DEBUG 0
set global innodb_change_buffering_debug=1;
select @@global.innodb_change_buffering_debug;
@@global.innodb_change_buffering_debug
1
select * from information_schema.global_variables where variable_name='innodb_change_buffering_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_CHANGE_BUFFERING_DEBUG 1
select * from information_schema.session_variables where variable_name='innodb_change_buffering_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_CHANGE_BUFFERING_DEBUG 1
set @@global.innodb_change_buffering_debug=0;
select @@global.innodb_change_buffering_debug;
@@global.innodb_change_buffering_debug
0
select * from information_schema.global_variables where variable_name='innodb_change_buffering_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_CHANGE_BUFFERING_DEBUG 0
select * from information_schema.session_variables where variable_name='innodb_change_buffering_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_CHANGE_BUFFERING_DEBUG 0
set session innodb_change_buffering_debug='some';
ERROR HY000: Variable 'innodb_change_buffering_debug' is a GLOBAL variable and should be set with SET GLOBAL
set @@session.innodb_change_buffering_debug='some';
ERROR HY000: Variable 'innodb_change_buffering_debug' is a GLOBAL variable and should be set with SET GLOBAL
set global innodb_change_buffering_debug=1.1;
ERROR 42000: Incorrect argument type to variable 'innodb_change_buffering_debug'
set global innodb_change_buffering_debug='foo';
ERROR 42000: Incorrect argument type to variable 'innodb_change_buffering_debug'
set global innodb_change_buffering_debug=-2;
Warnings:
Warning 1292 Truncated incorrect innodb_change_buffering_debug value: '-2'
set global innodb_change_buffering_debug=1e1;
ERROR 42000: Incorrect argument type to variable 'innodb_change_buffering_debug'
set global innodb_change_buffering_debug=2;
Warnings:
Warning 1292 Truncated incorrect innodb_change_buffering_debug value: '2'
SET @@global.innodb_change_buffering_debug = @start_global_value;
SELECT @@global.innodb_change_buffering_debug;
@@global.innodb_change_buffering_debug
0
mysql-test/suite/sys_vars/r/innodb_trx_rseg_n_slots_debug_basic.result
0 → 100644
View file @
9f9b8cfc
SET @start_global_value = @@global.innodb_trx_rseg_n_slots_debug;
SELECT @start_global_value;
@start_global_value
0
select @@global.innodb_trx_rseg_n_slots_debug between 0 and 1024;
@@global.innodb_trx_rseg_n_slots_debug between 0 and 1024
1
select @@global.innodb_trx_rseg_n_slots_debug;
@@global.innodb_trx_rseg_n_slots_debug
0
select @@session.innodb_trx_rseg_n_slots_debug;
ERROR HY000: Variable 'innodb_trx_rseg_n_slots_debug' is a GLOBAL variable
show global variables like 'innodb_trx_rseg_n_slots_debug';
Variable_name Value
innodb_trx_rseg_n_slots_debug 0
show session variables like 'innodb_trx_rseg_n_slots_debug';
Variable_name Value
innodb_trx_rseg_n_slots_debug 0
select * from information_schema.global_variables where variable_name='innodb_trx_rseg_n_slots_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_TRX_RSEG_N_SLOTS_DEBUG 0
select * from information_schema.session_variables where variable_name='innodb_trx_rseg_n_slots_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_TRX_RSEG_N_SLOTS_DEBUG 0
set global innodb_trx_rseg_n_slots_debug=1;
select @@global.innodb_trx_rseg_n_slots_debug;
@@global.innodb_trx_rseg_n_slots_debug
1
select * from information_schema.global_variables where variable_name='innodb_trx_rseg_n_slots_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_TRX_RSEG_N_SLOTS_DEBUG 1
select * from information_schema.session_variables where variable_name='innodb_trx_rseg_n_slots_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_TRX_RSEG_N_SLOTS_DEBUG 1
set @@global.innodb_trx_rseg_n_slots_debug=0;
select @@global.innodb_trx_rseg_n_slots_debug;
@@global.innodb_trx_rseg_n_slots_debug
0
select * from information_schema.global_variables where variable_name='innodb_trx_rseg_n_slots_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_TRX_RSEG_N_SLOTS_DEBUG 0
select * from information_schema.session_variables where variable_name='innodb_trx_rseg_n_slots_debug';
VARIABLE_NAME VARIABLE_VALUE
INNODB_TRX_RSEG_N_SLOTS_DEBUG 0
set session innodb_trx_rseg_n_slots_debug='some';
ERROR HY000: Variable 'innodb_trx_rseg_n_slots_debug' is a GLOBAL variable and should be set with SET GLOBAL
set @@session.innodb_trx_rseg_n_slots_debug='some';
ERROR HY000: Variable 'innodb_trx_rseg_n_slots_debug' is a GLOBAL variable and should be set with SET GLOBAL
set global innodb_trx_rseg_n_slots_debug=1.1;
ERROR 42000: Incorrect argument type to variable 'innodb_trx_rseg_n_slots_debug'
set global innodb_trx_rseg_n_slots_debug='foo';
ERROR 42000: Incorrect argument type to variable 'innodb_trx_rseg_n_slots_debug'
set global innodb_trx_rseg_n_slots_debug=-2;
Warnings:
Warning 1292 Truncated incorrect innodb_trx_rseg_n_slots_debug value: '-2'
set global innodb_trx_rseg_n_slots_debug=1e1;
ERROR 42000: Incorrect argument type to variable 'innodb_trx_rseg_n_slots_debug'
set global innodb_trx_rseg_n_slots_debug=1024;
set global innodb_trx_rseg_n_slots_debug=1025;
Warnings:
Warning 1292 Truncated incorrect innodb_trx_rseg_n_slots_debug value: '1025'
SET @@global.innodb_trx_rseg_n_slots_debug = @start_global_value;
SELECT @@global.innodb_trx_rseg_n_slots_debug;
@@global.innodb_trx_rseg_n_slots_debug
0
mysql-test/suite/sys_vars/t/all_vars.test
View file @
9f9b8cfc
...
...
@@ -47,10 +47,6 @@ eval load data infile "$MYSQLTEST_VARDIR/tmp/sys_vars.all_vars.txt" into table t
insert
into
t2
select
variable_name
from
information_schema
.
global_variables
;
insert
into
t2
select
variable_name
from
information_schema
.
session_variables
;
# This is only present in debug builds.
delete
from
t2
where
variable_name
=
'innodb_change_buffering_debug'
;
delete
from
t2
where
variable_name
=
'innodb_trx_rseg_n_slots_debug'
;
# Performance schema variables are too long for files named
# 'mysql-test/suite/sys_vars/t/' ...
# ... 'performance_schema_events_waits_history_long_size_basic-master.opt'
...
...
mysql-test/suite/sys_vars/t/innodb_change_buffering_debug_basic.test
0 → 100644
View file @
9f9b8cfc
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_debug
.
inc
SET
@
start_global_value
=
@@
global
.
innodb_change_buffering_debug
;
SELECT
@
start_global_value
;
#
# exists as global only
#
select
@@
global
.
innodb_change_buffering_debug
in
(
0
,
1
);
select
@@
global
.
innodb_change_buffering_debug
;
--
error
ER_INCORRECT_GLOBAL_LOCAL_VAR
select
@@
session
.
innodb_change_buffering_debug
;
show
global
variables
like
'innodb_change_buffering_debug'
;
show
session
variables
like
'innodb_change_buffering_debug'
;
select
*
from
information_schema
.
global_variables
where
variable_name
=
'innodb_change_buffering_debug'
;
select
*
from
information_schema
.
session_variables
where
variable_name
=
'innodb_change_buffering_debug'
;
#
# show that it's writable
#
set
global
innodb_change_buffering_debug
=
1
;
select
@@
global
.
innodb_change_buffering_debug
;
select
*
from
information_schema
.
global_variables
where
variable_name
=
'innodb_change_buffering_debug'
;
select
*
from
information_schema
.
session_variables
where
variable_name
=
'innodb_change_buffering_debug'
;
set
@@
global
.
innodb_change_buffering_debug
=
0
;
select
@@
global
.
innodb_change_buffering_debug
;
select
*
from
information_schema
.
global_variables
where
variable_name
=
'innodb_change_buffering_debug'
;
select
*
from
information_schema
.
session_variables
where
variable_name
=
'innodb_change_buffering_debug'
;
--
error
ER_GLOBAL_VARIABLE
set
session
innodb_change_buffering_debug
=
'some'
;
--
error
ER_GLOBAL_VARIABLE
set
@@
session
.
innodb_change_buffering_debug
=
'some'
;
#
# incorrect types
#
--
error
ER_WRONG_TYPE_FOR_VAR
set
global
innodb_change_buffering_debug
=
1.1
;
--
error
ER_WRONG_TYPE_FOR_VAR
set
global
innodb_change_buffering_debug
=
'foo'
;
set
global
innodb_change_buffering_debug
=-
2
;
--
error
ER_WRONG_TYPE_FOR_VAR
set
global
innodb_change_buffering_debug
=
1
e1
;
set
global
innodb_change_buffering_debug
=
2
;
#
# Cleanup
#
SET
@@
global
.
innodb_change_buffering_debug
=
@
start_global_value
;
SELECT
@@
global
.
innodb_change_buffering_debug
;
mysql-test/suite/sys_vars/t/innodb_trx_rseg_n_slots_debug_basic.test
0 → 100644
View file @
9f9b8cfc
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_debug
.
inc
SET
@
start_global_value
=
@@
global
.
innodb_trx_rseg_n_slots_debug
;
SELECT
@
start_global_value
;
#
# exists as global only
#
select
@@
global
.
innodb_trx_rseg_n_slots_debug
between
0
and
1024
;
select
@@
global
.
innodb_trx_rseg_n_slots_debug
;
--
error
ER_INCORRECT_GLOBAL_LOCAL_VAR
select
@@
session
.
innodb_trx_rseg_n_slots_debug
;
show
global
variables
like
'innodb_trx_rseg_n_slots_debug'
;
show
session
variables
like
'innodb_trx_rseg_n_slots_debug'
;
select
*
from
information_schema
.
global_variables
where
variable_name
=
'innodb_trx_rseg_n_slots_debug'
;
select
*
from
information_schema
.
session_variables
where
variable_name
=
'innodb_trx_rseg_n_slots_debug'
;
#
# show that it's writable
#
set
global
innodb_trx_rseg_n_slots_debug
=
1
;
select
@@
global
.
innodb_trx_rseg_n_slots_debug
;
select
*
from
information_schema
.
global_variables
where
variable_name
=
'innodb_trx_rseg_n_slots_debug'
;
select
*
from
information_schema
.
session_variables
where
variable_name
=
'innodb_trx_rseg_n_slots_debug'
;
set
@@
global
.
innodb_trx_rseg_n_slots_debug
=
0
;
select
@@
global
.
innodb_trx_rseg_n_slots_debug
;
select
*
from
information_schema
.
global_variables
where
variable_name
=
'innodb_trx_rseg_n_slots_debug'
;
select
*
from
information_schema
.
session_variables
where
variable_name
=
'innodb_trx_rseg_n_slots_debug'
;
--
error
ER_GLOBAL_VARIABLE
set
session
innodb_trx_rseg_n_slots_debug
=
'some'
;
--
error
ER_GLOBAL_VARIABLE
set
@@
session
.
innodb_trx_rseg_n_slots_debug
=
'some'
;
#
# incorrect types
#
--
error
ER_WRONG_TYPE_FOR_VAR
set
global
innodb_trx_rseg_n_slots_debug
=
1.1
;
--
error
ER_WRONG_TYPE_FOR_VAR
set
global
innodb_trx_rseg_n_slots_debug
=
'foo'
;
set
global
innodb_trx_rseg_n_slots_debug
=-
2
;
--
error
ER_WRONG_TYPE_FOR_VAR
set
global
innodb_trx_rseg_n_slots_debug
=
1
e1
;
set
global
innodb_trx_rseg_n_slots_debug
=
1024
;
set
global
innodb_trx_rseg_n_slots_debug
=
1025
;
#
# Cleanup
#
SET
@@
global
.
innodb_trx_rseg_n_slots_debug
=
@
start_global_value
;
SELECT
@@
global
.
innodb_trx_rseg_n_slots_debug
;
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