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

« back to all changes in this revision

Viewing changes to tests/randgen/conf/drizzle/bug680669.yy

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2010 Patrick Crews. 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
# This grammar is designed to generate a workload suitable for testing the Drizzle 
 
19
# transaction_log.  It is intended for use with --threads=1 and with the DrizzleTransactionLog Validator
 
20
# Using the Validator requires that we have a validation server running somewhere so we
 
21
# can try to replicate from SQL generated from the transaction_log (via drizzled/message/transaction_reader
 
22
#
 
23
# This is still a work in progress and is likely to change.
 
24
# We are generating a fair number of invalid queries and we could tighten things up, however,
 
25
# we have found a number of bugs with this grammar as it currently exists.
 
26
 
 
27
query_init:
 
28
       SET AUTOCOMMIT=OFF;
 
29
 
 
30
query:
 
31
        transaction ;
 
32
 
 
33
query_disabled:
 
34
        transaction | transaction | 
 
35
        normal_query | normal_query | normal_query ;
 
36
 
 
37
normal_query:
 
38
        #select | select |
 
39
        #select | select |
 
40
        #select | select |
 
41
        #select | select |
 
42
        insert_query | update | delete |
 
43
        insert_query | update | delete |
 
44
        insert_query | update | delete |
 
45
        insert_query | update | delete |
 
46
        insert_query | update | delete | 
 
47
        insert_query | update | delete |
 
48
        insert_query | update | delete |
 
49
        insert_query | update | delete |
 
50
        insert_query | update | delete |
 
51
        insert_query | update | delete ;
 
52
 
 
53
disablednormalquery:
 
54
        SAVEPOINT A /*Generated by THREAD_ID _thread_id*/ | 
 
55
        ROLLBACK TO SAVEPOINT A /*Generated by THREAD_ID _thread_id*/ ;
 
56
 
 
57
disabled_normal_query_list:
 
58
  normal_query_list ; normal_query ; normal_query ; normal_query ; normal_query ; normal_query | 
 
59
  normal_query ; normal_query ; normal_query ; normal_query ; normal_query ; normal_query ;
 
60
 
 
61
normal_query_list: 
 
62
  normal_query ; normal_query ; normal_query ; normal_query ;
 
63
 
 
64
transaction:
 
65
  transaction1 | transaction2 | transaction2 | transaction2 ;
 
66
 
 
67
transaction1:
 
68
  START TRANSACTION /*Generated by THREAD_ID _thread_id*/ ; normal_query_list ; SAVEPOINT A /*Generated by THREAD_ID _thread_id*/ ; end_transaction ; START TRANSACTION /*Generated by THREAD_ID _thread_id*/ ; normal_query ; ROLLBACK TO SAVEPOINT A /*Generated by THREAD_ID _thread_id*/ ; normal_query_list ; end_transaction ;
 
69
 
 
70
transaction2:
 
71
  START TRANSACTION /*Generated by THREAD_ID _thread_id*/ ; normal_query_list ; end_transaction ;
 
72
 
 
73
transactiondisabled:
 
74
  SET AUTOCOMMIT=OFF /*Generated by THREAD_ID _thread_id*/ ; START TRANSACTION /*Generated by THREAD_ID _thread_id*/ ; normal_query_list ; end_transaction ; SET AUTOCOMMIT=ON /*Generated by THREAD_ID _thread_id*/ ;
 
75
 
 
76
end_transaction:
 
77
  commit_rollback ; 
 
78
 
 
79
commit_rollback:
 
80
  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
81
  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
82
#  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
83
#  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
84
#  COMMIT /*Generated by THREAD_ID _thread_id*/|  
 
85
  ROLLBACK /*Generated by THREAD_ID _thread_id*/;
 
86
 
 
87
 
 
88
select:
 
89
        SELECT select_list FROM join_list where LIMIT large_digit for_update_lock_in_share_mode /*Generated by THREAD_ID _thread_id*/ ;
 
90
 
 
91
select_list:
 
92
        X . _field_key | X . _field_key |
 
93
        X . `pk` |
 
94
        X . _field |
 
95
        * |
 
96
        ( subselect );
 
97
 
 
98
subselect:
 
99
        SELECT _field_key FROM _table WHERE `pk` = value ;
 
100
 
 
101
# Use index for all joins
 
102
join_list:
 
103
        _table AS X | 
 
104
        _table AS X LEFT JOIN _table AS Y USING ( _field_key );
 
105
 
 
106
for_update_lock_in_share_mode:
 
107
        | | | | | 
 
108
        FOR UPDATE |
 
109
        LOCK IN SHARE MODE ;
 
110
 
 
111
ignore:
 
112
        | 
 
113
        IGNORE ;
 
114
 
 
115
low_priority:
 
116
        | | | LOW_PRIORITY;
 
117
 
 
118
insert_query:
 
119
  insert_replace INTO _table ( insert_column_list ) 
 
120
  SELECT insert_column_list 
 
121
  FROM _table where_insert 
 
122
  ORDER BY _field_list LIMIT insert_limit /*Generated by THREAD_ID _thread_id*/;
 
123
 
 
124
insert_replace:
 
125
  INSERT | INSERT | INSERT | INSERT | INSERT |
 
126
  INSERT | INSERT | INSERT | INSERT | INSERT |
 
127
  REPLACE ;
 
128
 
 
129
insert_column_list:
 
130
# We use a set column list because even though all tables have the same
 
131
# columns, each table has a different order of those columns for 
 
132
# enhanced randomness
 
133
 `col_char_10` , `col_char_10_key` , `col_char_10_not_null` , `col_char_10_not_null_key` ,
 
134
 `col_char_1024` , `col_char_1024_key` , `col_char_1024_not_null` , `col_char_1024_not_null_key` ,
 
135
 `col_int` , `col_int_key` , `col_int_not_null` , `col_int_not_null_key` ,
 
136
 `col_bigint` , `col_bigint_key` , `col_bigint_not_null` , `col_bigint_not_null_key` ,
 
137
 `col_enum` , `col_enum_key` , `col_enum_not_null` , `col_enum_not_null_key` ,
 
138
 `col_text` , `col_text_key` , `col_text_not_null` , `col_text_not_null_key` 
 
139
 ;
 
140
 
 
141
update:
 
142
        UPDATE _table SET update_clause where_insert ORDER BY _field_list LIMIT large_digit /*Generated by THREAD_ID _thread_id*/ ;
 
143
 
 
144
update_clause:
 
145
  no_pk_int_field_name = int_value ;
 
146
 
 
147
# We use a smaller limit on DELETE so that we delete less than we insert
 
148
 
 
149
delete:
 
150
        DELETE FROM _table where_insert ORDER BY _field_list LIMIT small_digit /*Generated by THREAD_ID _thread_id*/ ;
 
151
 
 
152
quick:
 
153
        | 
 
154
        QUICK ;
 
155
 
 
156
order_by:
 
157
        | ORDER BY X . _field_key ;
 
158
 
 
159
# Use an index at all times
 
160
where:
 
161
        |
 
162
        WHERE X . _field_key < value |  # Use only < to reduce deadlocks
 
163
        WHERE X . _field_key IN ( value , value , value , value , value ) |
 
164
        WHERE X . int_field_name BETWEEN small_digit AND large_digit |
 
165
        WHERE X . int_field_name BETWEEN _tinyint_unsigned AND _int_unsigned ;
 
166
 
 
167
where_disabled: 
 
168
# only used in select's, but causing crashes on bad
 
169
# compares like enum to int
 
170
        WHERE X . _field_key = ( subselect ) ;
 
171
       
 
172
 
 
173
where_delete:
 
174
        | ;
 
175
        
 
176
 
 
177
where_insert:
 
178
    |
 
179
    WHERE int_field_name compare_operator int_value |
 
180
    WHERE char_field_name compare_operator char_value |
 
181
    WHERE int_field_name IN (int_value_list) |
 
182
    WHERE char_field_name IN (char_value_list) |
 
183
    WHERE int_field_name BETWEEN int_value AND int_value |
 
184
    WHERE int_field BETWEEN _tinyint_unsigned AND _int_unsigned |
 
185
    WHERE int_field BETWEEN small_digit AND large_digit |
 
186
    where_fuzz ;
 
187
 
 
188
where_fuzz:
 
189
# rules to introduce some fuzz testing 
 
190
# we deliberately allow the chance of bad
 
191
# comparisons here to see what happens
 
192
    WHERE _field_key = ( subselect ) |
 
193
    WHERE _field_key compare_operator value |
 
194
    WHERE _field_key IN ( subselect ) ;
 
195
 
 
196
compare_operator:
 
197
  = | = | = | = | < | > | <= | >= | != ;
 
198
 
 
199
 
 
200
 
 
201
int_value:
 
202
  _digit | _digit | large_digit | small_digit | 
 
203
  _digit | insert_limit | _tinyint_unsigned |
 
204
  _digit | _digit | large_digit | small_digit | 
 
205
  _digit | insert_limit | _tinyint_unsigned |
 
206
  value ;
 
207
 
 
208
int_value_list:  
 
209
  int_value_list, int_value | int_value | int_value ;
 
210
 
 
211
char_value:
 
212
  _char | _char | _quid ;
 
213
 
 
214
char_value_list:
 
215
  char_value_list, char_value | char_value | char_value ;
 
216
 
 
217
int_field_name:
 
218
    `pk` | `col_int_key` | `col_int` |
 
219
    `col_bigint` | `col_bigint_key` |
 
220
    `col_int_not_null` | `col_int_not_null_key` ;
 
221
 
 
222
no_pk_int_field_name:
 
223
    `col_int_key` | `col_int` |
 
224
    `col_bigint` | `col_bigint_key` |
 
225
    `col_int_not_null` | `col_int_not_null_key` ;    
 
226
 
 
227
 
 
228
char_field_name:
 
229
      `col_char_10` | `col_char_10_key` | `col_text_not_null` | `col_text_not_null_key` |
 
230
      `col_text_key` | `col_text` | `col_char_10_not_null_key` | `col_char_10_not_null` |
 
231
      `col_char_1024` | `col_char_1024_key` | `col_char_1024_not_null` | `col_char_1024_not_null_key` ;
 
232
 
 
233
large_digit:
 
234
        5 ;
 
235
 
 
236
small_digit:
 
237
        1  ;
 
238
 
 
239
insert_limit:
 
240
   5 ;
 
241
 
 
242
value:
 
243
        _digit | _tinyint_unsigned | _varchar(1) | _int_unsigned ;
 
244
 
 
245
zero_one:
 
246
        0 | 0 | 1;