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
1bdf0113
Commit
1bdf0113
authored
May 02, 2017
by
Aleksey Midenkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge: stale innodb_support_xa_basic
parent
7e0ff13d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
467 deletions
+0
-467
mysql-test/suite/sys_vars/r/innodb_support_xa_basic.result
mysql-test/suite/sys_vars/r/innodb_support_xa_basic.result
+0
-227
mysql-test/suite/sys_vars/t/innodb_support_xa_basic.test
mysql-test/suite/sys_vars/t/innodb_support_xa_basic.test
+0
-240
No files found.
mysql-test/suite/sys_vars/r/innodb_support_xa_basic.result
deleted
100644 → 0
View file @
7e0ff13d
SET @session_start_value = @@session.innodb_support_xa;
SELECT @session_start_value;
@session_start_value
1
SET @global_start_value = @@global.innodb_support_xa;
SELECT @global_start_value;
@global_start_value
1
'#--------------------FN_DYNVARS_046_01------------------------#'
SET @@session.innodb_support_xa = 0;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SET @@session.innodb_support_xa = DEFAULT;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@global.innodb_support_xa = 0;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SET @@global.innodb_support_xa = DEFAULT;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
'#---------------------FN_DYNVARS_046_02-------------------------#'
SET innodb_support_xa = 1;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@innodb_support_xa;
@@innodb_support_xa
1
SELECT session.innodb_support_xa;
ERROR 42S02: Unknown table 'session' in field list
SELECT local.innodb_support_xa;
ERROR 42S02: Unknown table 'local' in field list
SELECT global.innodb_support_xa;
ERROR 42S02: Unknown table 'global' in field list
SET session innodb_support_xa = 0;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET global innodb_support_xa = 0;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
'#--------------------FN_DYNVARS_046_03------------------------#'
SET @@session.innodb_support_xa = 0;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@session.innodb_support_xa = 1;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@global.innodb_support_xa = 0;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
SET @@global.innodb_support_xa = 1;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
'#--------------------FN_DYNVARS_046_04-------------------------#'
SET @@session.innodb_support_xa = -0.6;
ERROR 42000: Incorrect argument type to variable 'innodb_support_xa'
SET @@session.innodb_support_xa = 1.6;
ERROR 42000: Incorrect argument type to variable 'innodb_support_xa'
SET @@session.innodb_support_xa = "T";
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'T'
SET @@session.innodb_support_xa = "Y";
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'Y'
SET @@session.innodb_support_xa = TRE;
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'TRE'
SET @@session.innodb_support_xa = N;
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'N'
SET @@session.innodb_support_xa = OFF;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@session.innodb_support_xa = FF;
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'FF'
SET @@global.innodb_support_xa = -1;
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of '-1'
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
SET @@global.innodb_support_xa = 2;
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of '2'
SET @@global.innodb_support_xa = "T";
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'T'
SET @@global.innodb_support_xa = "Y";
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'Y'
SET @@global.innodb_support_xa = TRE;
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'TRE'
SET @@global.innodb_support_xa = N;
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'N'
SET @@global.innodb_support_xa = OFF;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
SET @@global.innodb_support_xa = FF;
ERROR 42000: Variable 'innodb_support_xa' can't be set to the value of 'FF'
'#-------------------FN_DYNVARS_046_05----------------------------#'
SET @@global.innodb_support_xa = 0;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SET @@session.innodb_support_xa = 1;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@global.innodb_support_xa AS res_is_0;
res_is_0
1
SET @@global.innodb_support_xa = 0;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@session.innodb_support_xa AS res_is_1;
res_is_1
1
'#----------------------FN_DYNVARS_046_06------------------------#'
SELECT IF(@@global.innodb_support_xa, "ON", "OFF") =
VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME='innodb_support_xa';
IF(@@global.innodb_support_xa, "ON", "OFF") =
VARIABLE_VALUE
1
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME='innodb_support_xa';
VARIABLE_VALUE
ON
'#----------------------FN_DYNVARS_046_07------------------------#'
SELECT IF(@@session.innodb_support_xa, "ON", "OFF") =
VARIABLE_VALUE FROM INFORMATION_SCHEMA.SESSION_VARIABLES
WHERE VARIABLE_NAME='innodb_support_xa';
IF(@@session.innodb_support_xa, "ON", "OFF") =
VARIABLE_VALUE
1
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.SESSION_VARIABLES
WHERE VARIABLE_NAME='innodb_support_xa';
VARIABLE_VALUE
ON
'#---------------------FN_DYNVARS_046_08-------------------------#'
SET @@session.innodb_support_xa = OFF;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@session.innodb_support_xa = ON;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@global.innodb_support_xa = OFF;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
SET @@global.innodb_support_xa = ON;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
'#---------------------FN_DYNVARS_046_09----------------------#'
SET @@session.innodb_support_xa = TRUE;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@session.innodb_support_xa = FALSE;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@global.innodb_support_xa = TRUE;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
SET @@global.innodb_support_xa = FALSE;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases. Only innodb_support_xa=ON is allowed.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
SET @@session.innodb_support_xa = @session_start_value;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@session.innodb_support_xa;
@@session.innodb_support_xa
1
SET @@global.innodb_support_xa = @global_start_value;
Warnings:
Warning 131 Using innodb_support_xa is deprecated and the parameter may be removed in future releases.
SELECT @@global.innodb_support_xa;
@@global.innodb_support_xa
1
mysql-test/suite/sys_vars/t/innodb_support_xa_basic.test
deleted
100644 → 0
View file @
7e0ff13d
################# mysql-test\t\innodb_support_xa_basic.test ###################
# #
# Variable Name: innodb_support_xa #
# Scope: GLOBAL | SESSION #
# Access Type: Dynamic #
# Data Type: boolean #
# Default Value: 1 #
# Range: 0,1 #
# #
# #
# Creation Date: 2008-02-20 #
# Author: Rizwan #
# #
# Description: Test Cases of Dynamic System Variable innodb_support_xa #
# that checks the behavior of this variable in the following ways#
# * Default Value #
# * Valid & Invalid values #
# * Scope & Access method #
# * Data Integrity #
# #
# Reference: http://dev.mysql.com/doc/refman/5.1/en/ #
# server-system-variables.html #
# #
###############################################################################
--
source
include
/
have_innodb
.
inc
--
source
include
/
load_sysvars
.
inc
########################################################################
# START OF innodb_support_xa TESTS #
########################################################################
################################################################################
# Saving initial value of innodb_support_xa in a temporary variable #
################################################################################
SET
@
session_start_value
=
@@
session
.
innodb_support_xa
;
SELECT
@
session_start_value
;
SET
@
global_start_value
=
@@
global
.
innodb_support_xa
;
SELECT
@
global_start_value
;
--
echo
'#--------------------FN_DYNVARS_046_01------------------------#'
########################################################################
# Display the DEFAULT value of innodb_support_xa #
########################################################################
SET
@@
session
.
innodb_support_xa
=
0
;
SET
@@
session
.
innodb_support_xa
=
DEFAULT
;
SELECT
@@
session
.
innodb_support_xa
;
SET
@@
global
.
innodb_support_xa
=
0
;
SET
@@
global
.
innodb_support_xa
=
DEFAULT
;
SELECT
@@
global
.
innodb_support_xa
;
--
echo
'#---------------------FN_DYNVARS_046_02-------------------------#'
##########################################################################
# Check if innodb_support_xa can be accessed with and without @@ sign #
##########################################################################
SET
innodb_support_xa
=
1
;
SELECT
@@
innodb_support_xa
;
--
Error
ER_UNKNOWN_TABLE
SELECT
session
.
innodb_support_xa
;
--
Error
ER_UNKNOWN_TABLE
SELECT
local
.
innodb_support_xa
;
--
Error
ER_UNKNOWN_TABLE
SELECT
global
.
innodb_support_xa
;
#using another syntax for accessing system variables
SET
session
innodb_support_xa
=
0
;
SELECT
@@
session
.
innodb_support_xa
;
SET
global
innodb_support_xa
=
0
;
SELECT
@@
global
.
innodb_support_xa
;
--
echo
'#--------------------FN_DYNVARS_046_03------------------------#'
##########################################################################
# change the value of innodb_support_xa to a valid value #
##########################################################################
# for session
SET
@@
session
.
innodb_support_xa
=
0
;
SELECT
@@
session
.
innodb_support_xa
;
SET
@@
session
.
innodb_support_xa
=
1
;
SELECT
@@
session
.
innodb_support_xa
;
# for global
SET
@@
global
.
innodb_support_xa
=
0
;
SELECT
@@
global
.
innodb_support_xa
;
SET
@@
global
.
innodb_support_xa
=
1
;
SELECT
@@
global
.
innodb_support_xa
;
--
echo
'#--------------------FN_DYNVARS_046_04-------------------------#'
###########################################################################
# Change the value of innodb_support_xa to invalid value #
###########################################################################
# for session
--
Error
ER_WRONG_TYPE_FOR_VAR
SET
@@
session
.
innodb_support_xa
=
-
0.6
;
--
Error
ER_WRONG_TYPE_FOR_VAR
SET
@@
session
.
innodb_support_xa
=
1.6
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
session
.
innodb_support_xa
=
"T"
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
session
.
innodb_support_xa
=
"Y"
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
session
.
innodb_support_xa
=
TRE
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
session
.
innodb_support_xa
=
N
;
SET
@@
session
.
innodb_support_xa
=
OFF
;
SELECT
@@
session
.
innodb_support_xa
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
session
.
innodb_support_xa
=
FF
;
# for global
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
global
.
innodb_support_xa
=
-
1
;
SELECT
@@
global
.
innodb_support_xa
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
global
.
innodb_support_xa
=
2
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
global
.
innodb_support_xa
=
"T"
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
global
.
innodb_support_xa
=
"Y"
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
global
.
innodb_support_xa
=
TRE
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
global
.
innodb_support_xa
=
N
;
SET
@@
global
.
innodb_support_xa
=
OFF
;
SELECT
@@
global
.
innodb_support_xa
;
--
Error
ER_WRONG_VALUE_FOR_VAR
SET
@@
global
.
innodb_support_xa
=
FF
;
--
echo
'#-------------------FN_DYNVARS_046_05----------------------------#'
###########################################################################
# Test if changing global variable effects session and vice versa #
###########################################################################
SET
@@
global
.
innodb_support_xa
=
0
;
SET
@@
session
.
innodb_support_xa
=
1
;
SELECT
@@
global
.
innodb_support_xa
AS
res_is_0
;
SET
@@
global
.
innodb_support_xa
=
0
;
SELECT
@@
session
.
innodb_support_xa
AS
res_is_1
;
--
echo
'#----------------------FN_DYNVARS_046_06------------------------#'
#########################################################################
# Check if the value in GLOBAL Table matches value in variable #
#########################################################################
--
disable_warnings
SELECT
IF
(
@@
global
.
innodb_support_xa
,
"ON"
,
"OFF"
)
=
VARIABLE_VALUE
FROM
INFORMATION_SCHEMA
.
GLOBAL_VARIABLES
WHERE
VARIABLE_NAME
=
'innodb_support_xa'
;
--
enable_warnings
SELECT
@@
global
.
innodb_support_xa
;
--
disable_warnings
SELECT
VARIABLE_VALUE
FROM
INFORMATION_SCHEMA
.
GLOBAL_VARIABLES
WHERE
VARIABLE_NAME
=
'innodb_support_xa'
;
--
enable_warnings
--
echo
'#----------------------FN_DYNVARS_046_07------------------------#'
#########################################################################
# Check if the value in SESSION Table matches value in variable #
#########################################################################
--
disable_warnings
SELECT
IF
(
@@
session
.
innodb_support_xa
,
"ON"
,
"OFF"
)
=
VARIABLE_VALUE
FROM
INFORMATION_SCHEMA
.
SESSION_VARIABLES
WHERE
VARIABLE_NAME
=
'innodb_support_xa'
;
--
enable_warnings
SELECT
@@
session
.
innodb_support_xa
;
--
disable_warnings
SELECT
VARIABLE_VALUE
FROM
INFORMATION_SCHEMA
.
SESSION_VARIABLES
WHERE
VARIABLE_NAME
=
'innodb_support_xa'
;
--
enable_warnings
--
echo
'#---------------------FN_DYNVARS_046_08-------------------------#'
###################################################################
# Check if ON and OFF values can be used on variable #
###################################################################
SET
@@
session
.
innodb_support_xa
=
OFF
;
SELECT
@@
session
.
innodb_support_xa
;
SET
@@
session
.
innodb_support_xa
=
ON
;
SELECT
@@
session
.
innodb_support_xa
;
SET
@@
global
.
innodb_support_xa
=
OFF
;
SELECT
@@
global
.
innodb_support_xa
;
SET
@@
global
.
innodb_support_xa
=
ON
;
SELECT
@@
global
.
innodb_support_xa
;
--
echo
'#---------------------FN_DYNVARS_046_09----------------------#'
###################################################################
# Check if TRUE and FALSE values can be used on variable #
###################################################################
SET
@@
session
.
innodb_support_xa
=
TRUE
;
SELECT
@@
session
.
innodb_support_xa
;
SET
@@
session
.
innodb_support_xa
=
FALSE
;
SELECT
@@
session
.
innodb_support_xa
;
SET
@@
global
.
innodb_support_xa
=
TRUE
;
SELECT
@@
global
.
innodb_support_xa
;
SET
@@
global
.
innodb_support_xa
=
FALSE
;
SELECT
@@
global
.
innodb_support_xa
;
##############################
# Restore initial value #
##############################
SET
@@
session
.
innodb_support_xa
=
@
session_start_value
;
SELECT
@@
session
.
innodb_support_xa
;
SET
@@
global
.
innodb_support_xa
=
@
global_start_value
;
SELECT
@@
global
.
innodb_support_xa
;
###############################################################
# END OF innodb_support_xa 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