~ubuntu-branches/ubuntu/saucy/drizzle/saucy

« back to all changes in this revision

Viewing changes to tests/kewpie/randgen/conf/backup/backup_interop.yy

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.2.11) (2.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20120619104649-9ij634mxm4x8pp4l
Tags: 1:7.1.36-stable-1ubuntu1
* Merge from Debian unstable. (LP: #987575)
  Remaining changes:
  - Added upstart script.
* debian/drizzle.upstart: dropped logger since upstart logs job
  output now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008 Sun Microsystems, Inc. All rights reserved.
 
2
# Use is subject to license terms.
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; version 2 of the License.
 
7
#
 
8
# This program is distributed in the hope that it will be useful, but
 
9
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
11
# General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
 
16
# USA
 
17
 
 
18
#####################################################################
 
19
#
 
20
# Author: Hema Sridharan
 
21
# Date: May 2009
 
22
#
 
23
# Purpose: Implementation of WL#4732: The test is intended to verify
 
24
# the interoperability of MySQL BACKUP / RESTORE operations with other
 
25
# server operations.
 
26
# This grammar file will execute server operations in parallel to BACKUP / 
 
27
# RESTORE
 
28
 
29
# Associated files are:
 
30
#  mysql-test/gentest/conf/backup/backup_obj.yy
 
31
#  mysql-test/gentest/conf/backup/backup_interop.yy
 
32
#  mysql-test/gentest/lib/Gentest/Reporter/BackupInterop.pm
 
33
#
 
34
#####################################################################
 
35
 
 
36
query:
 
37
      server_operation ;
 
38
 
 
39
server_operation:
 
40
        rotate_event | event_scheduler | sql_mode | character_set | engine |
 
41
        time_zone | key_cache_size | key_buffer_size | binlog_format |
 
42
        tx_isolation ;
 
43
 
 
44
rotate_event:
 
45
        FLUSH LOGS | FLUSH TABLES | FLUSH PRIVILEGES ;
 
46
 
 
47
sql_mode:
 
48
        SET SQL_MODE=' ' | SET SQL_MODE='TRADITIONAL' | 
 
49
        SET SQL_MODE='PIPES_AS_CONCAT' | SET SQL_MODE='ANSI_QUOTES' ;
 
50
 
 
51
tx_isolation:
 
52
        SET GLOBAL TRANSACTION ISOLATION LEVEL READ UNCOMMITTED | 
 
53
        SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED |
 
54
        SET GLOBAL TRANSACTION ISOLATION LEVEL REPEATABLE READ |
 
55
        SET GLOBAL TRANSACTION ISOLATION LEVEL SERIALIZABLE ;   
 
56
 
 
57
character_set:
 
58
        SET CHARACTER_SET_CLIENT=cset | SET CHARACTER_SET_CONNECTION=cset | 
 
59
        SET CHARACTER_SET_DATABASE=cset | SET CHARACTER_SET_FILESYSTEM=cset | 
 
60
        SET CHARACTER_SET_RESULTS=cset | SET CHARACTER_SET_SERVER=cset | 
 
61
        SET COLLATION_CONNECTION=coll | SET COLLATION_DATABASE=coll | 
 
62
        SET COLLATION_SERVER=coll ;
 
63
 
 
64
cset: LATIN1 | LATIN2 | LATIN5 | LATIN7 | SWE7 | BIG5 | EUCJPMS |
 
65
      GB2312 | ARMSCII8 | CP932 | UTF8 ;
 
66
 
 
67
coll: LATIN1_SWEDISH_CI | LATIN2_GENERAL_CI | LATIN5_TURKISH_CI | 
 
68
      LATIN7_GENERAL_CI | SWE7_SWEDISH_CI | BIG5_CHINESE_CI | 
 
69
      EUCJPMS_JAPANESE_CI | GB2312_CHINESE_CI | ARMSCII8_GENERAL_CI | 
 
70
      CP932_JAPANESE_CI | UTF8_SPANISH_CI ;
 
71
 
 
72
engine: SET STORAGE_ENGINE=storage_engine ;
 
73
 
 
74
storage_engine:  Myisam | Innodb ;
 
75
 
 
76
time_zone: SET TIME_ZONE=time ;
 
77
 
 
78
time: 'UTC' | 'Universal' | 'Europe/Moscow' | 'Japan' ;
 
79
 
 
80
key_buffer_size: SET GLOBAL KEY_BUFFER_SIZE=0 |
 
81
                 SET GLOBAL KEY_BUFFER_SIZE=400000 ;
 
82
 
 
83
key_cache_size: SET GLOBAL QUERY_CACHE_SIZE=1600000 | 
 
84
                SET GLOBAL QUERY_CACHE_SIZE=4198490 ;
 
85
 
 
86
event_scheduler: SET GLOBAL EVENT_SCHEDULER=ON | 
 
87
                 SET GLOBAL EVENT_SCHEDULER=OFF ;
 
88
 
 
89
binlog_format: SET GLOBAL BINLOG_FORMAT = ROW | 
 
90
               SET GLOBAL BINLOG_FORMAT = STATEMENT |
 
91
               SET GLOBAL BINLOG_FORMAT = MIXED ;
 
92