~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/mysql-test/innodb_bug47167.test

  • Committer: Brian Aker
  • Date: 2010-11-08 18:54:26 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1916.
  • Revision ID: brian@tangent.org-20101108185426-fymkf2xnelupf11x
Rename lock methods to be style + well make sense.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This is the unit test for bug *47167.
 
2
# It tests setting the global variable
 
3
# "innodb_file_format_check" with a
 
4
# user-Defined Variable.
 
5
 
 
6
--source include/have_innodb.inc
 
7
 
 
8
# Save the value (Antelope) in 'innodb_file_format_check' to
 
9
# 'old_innodb_file_format_check'
 
10
set @old_innodb_file_format_check=@@innodb_file_format_check;
 
11
 
 
12
# @old_innodb_file_format_check shall have the value of 'Antelope'
 
13
select @old_innodb_file_format_check;
 
14
 
 
15
# Reset the value in 'innodb_file_format_check' to 'Barracuda'
 
16
set global innodb_file_format_check = Barracuda;
 
17
 
 
18
select @@innodb_file_format_check;
 
19
 
 
20
# Set 'innodb_file_format_check' to its default value, which
 
21
# is the latest file format supported in the current release.
 
22
set global innodb_file_format_check = DEFAULT;
 
23
 
 
24
select @@innodb_file_format_check;
 
25
 
 
26
# Put the saved value back to 'innodb_file_format_check'
 
27
set global innodb_file_format_check = @old_innodb_file_format_check;
 
28
 
 
29
# Check whether 'innodb_file_format_check' get its original value.
 
30
select @@innodb_file_format_check;
 
31
 
 
32
# Following are negative tests, all should fail.
 
33
--disable_warnings
 
34
--error ER_WRONG_ARGUMENTS
 
35
set global innodb_file_format_check = cheetah;
 
36
 
 
37
--error ER_WRONG_ARGUMENTS
 
38
set global innodb_file_format_check = Bear;
 
39
 
 
40
--error ER_WRONG_ARGUMENTS
 
41
set global innodb_file_format_check = on;
 
42
 
 
43
--error ER_WRONG_ARGUMENTS
 
44
set global innodb_file_format_check = off;
 
45
--enable_warnings