~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to tests/test_tools/randgen/conf/drizzle/translog_concurrent1.yy

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-10-29 15:43:40 UTC
  • mfrom: (1.2.12) (2.1.19 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131029154340-2gp39el6cv8bwf2o
Tags: 1:7.2.3-2ubuntu1
* Merge from debian, remaining changes:
  - Link against boost_system because of boost_thread.
  - Add required libs to message/include.am
  - Add upstart job and adjust init script to be upstart compatible.
  - Disable -floop-parallelize-all due to gcc-4.8/4.9 compiler ICE
    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57732

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:
 
28
        transaction | transaction | 
 
29
        normal_query | normal_query | normal_query ;
 
30
 
 
31
normal_query:
 
32
        select | select |
 
33
        select | select |
 
34
        select | select |
 
35
        select | select |
 
36
        insert_query | update | delete |
 
37
        insert_query | update | delete |
 
38
        insert_query | update | delete |
 
39
        insert_query | update | delete |
 
40
        insert_query | update | delete | 
 
41
        insert_query | update | delete |
 
42
        insert_query | update | delete |
 
43
        insert_query | update | delete |
 
44
        insert_query | update | delete |
 
45
        insert_query | update | delete |
 
46
        SAVEPOINT A /*Generated by THREAD_ID _thread_id*/ | 
 
47
        ROLLBACK TO SAVEPOINT A /*Generated by THREAD_ID _thread_id*/ ;
 
48
 
 
49
normal_query_list:
 
50
  normal_query_list ; normal_query ; normal_query ; normal_query ; normal_query ; normal_query | 
 
51
  normal_query ; normal_query ; normal_query ; normal_query ; normal_query ; normal_query |
 
52
  normal_query ; normal_query ; normal_query ; normal_query ;
 
53
 
 
54
transaction:
 
55
  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*/ ;
 
56
 
 
57
end_transaction:
 
58
  commit_rollback ; 
 
59
 
 
60
commit_rollback:
 
61
  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
62
  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
63
  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
64
  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
65
  COMMIT /*Generated by THREAD_ID _thread_id*/| 
 
66
  ROLLBACK /*Generated by THREAD_ID _thread_id*/;
 
67
 
 
68
 
 
69
select:
 
70
        SELECT select_list FROM join_list where LIMIT large_digit for_update_lock_in_share_mode /*Generated by THREAD_ID _thread_id*/ ;
 
71
 
 
72
select_list:
 
73
        X . _field_key | X . _field_key |
 
74
        X . `pk` |
 
75
        X . _field |
 
76
        * |
 
77
        ( subselect );
 
78
 
 
79
subselect:
 
80
        SELECT _field_key FROM _table WHERE `pk` = value ;
 
81
 
 
82
# Use index for all joins
 
83
join_list:
 
84
        _table AS X | 
 
85
        _table AS X LEFT JOIN _table AS Y USING ( _field_key );
 
86
 
 
87
for_update_lock_in_share_mode:
 
88
        | | | | | 
 
89
        FOR UPDATE |
 
90
        LOCK IN SHARE MODE ;
 
91
 
 
92
ignore:
 
93
        | 
 
94
        IGNORE ;
 
95
 
 
96
low_priority:
 
97
        | | | LOW_PRIORITY;
 
98
 
 
99
insert_query:
 
100
  insert_replace INTO _table ( insert_column_list ) 
 
101
  SELECT insert_column_list 
 
102
  FROM _table where_insert 
 
103
  ORDER BY _field_list LIMIT insert_limit /*Generated by THREAD_ID _thread_id*/;
 
104
 
 
105
insert_replace:
 
106
  INSERT | INSERT | INSERT | INSERT | INSERT |
 
107
  INSERT | INSERT | INSERT | INSERT | INSERT |
 
108
  REPLACE ;
 
109
 
 
110
insert_column_list:
 
111
# We use a set column list because even though all tables have the same
 
112
# columns, each table has a different order of those columns for 
 
113
# enhanced randomness
 
114
 `col_char_10` , `col_char_10_key` , `col_char_10_not_null` , `col_char_10_not_null_key` ,
 
115
 `col_char_1024` , `col_char_1024_key` , `col_char_1024_not_null` , `col_char_1024_not_null_key` ,
 
116
 `col_int` , `col_int_key` , `col_int_not_null` , `col_int_not_null_key` ,
 
117
 `col_bigint` , `col_bigint_key` , `col_bigint_not_null` , `col_bigint_not_null_key` ,
 
118
 `col_enum` , `col_enum_key` , `col_enum_not_null` , `col_enum_not_null_key` ,
 
119
 `col_text` , `col_text_key` , `col_text_not_null` , `col_text_not_null_key` 
 
120
 ;
 
121
 
 
122
update:
 
123
        UPDATE _table SET update_clause where_insert ORDER BY _field_list LIMIT large_digit /*Generated by THREAD_ID _thread_id*/ ;
 
124
 
 
125
update_clause:
 
126
  no_pk_int_field_name = int_value ;
 
127
 
 
128
# We use a smaller limit on DELETE so that we delete less than we insert
 
129
 
 
130
delete:
 
131
        DELETE FROM _table where_insert ORDER BY _field_list LIMIT small_digit /*Generated by THREAD_ID _thread_id*/ ;
 
132
 
 
133
quick:
 
134
        | 
 
135
        QUICK ;
 
136
 
 
137
order_by:
 
138
        | ORDER BY X . _field_key ;
 
139
 
 
140
# Use an index at all times
 
141
where:
 
142
        |
 
143
        WHERE X . _field_key < value |  # Use only < to reduce deadlocks
 
144
        WHERE X . _field_key IN ( value , value , value , value , value ) |
 
145
        WHERE X . int_field_name BETWEEN small_digit AND large_digit |
 
146
        WHERE X . int_field_name BETWEEN _tinyint_unsigned AND _int_unsigned ;
 
147
 
 
148
where_disabled: 
 
149
# only used in select's, but causing crashes on bad
 
150
# compares like enum to int
 
151
        WHERE X . _field_key = ( subselect ) ;
 
152
       
 
153
 
 
154
where_delete:
 
155
        | ;
 
156
        
 
157
 
 
158
where_insert:
 
159
    |
 
160
    WHERE int_field_name compare_operator int_value |
 
161
    WHERE char_field_name compare_operator char_value |
 
162
    WHERE int_field_name IN (int_value_list) |
 
163
    WHERE char_field_name IN (char_value_list) |
 
164
    WHERE int_field_name BETWEEN int_value AND int_value |
 
165
    WHERE int_field BETWEEN _tinyint_unsigned AND _int_unsigned |
 
166
    WHERE int_field BETWEEN small_digit AND large_digit |
 
167
    where_fuzz ;
 
168
 
 
169
where_fuzz:
 
170
# rules to introduce some fuzz testing 
 
171
# we deliberately allow the chance of bad
 
172
# comparisons here to see what happens
 
173
    WHERE _field_key = ( subselect ) |
 
174
    WHERE _field_key compare_operator value |
 
175
    WHERE _field_key IN ( subselect ) ;
 
176
 
 
177
compare_operator:
 
178
  = | = | = | = | < | > | <= | >= | != ;
 
179
 
 
180
 
 
181
 
 
182
int_value:
 
183
  _digit | _digit | large_digit | small_digit | 
 
184
  _digit | insert_limit | _tinyint_unsigned |
 
185
  _digit | _digit | large_digit | small_digit | 
 
186
  _digit | insert_limit | _tinyint_unsigned |
 
187
  value ;
 
188
 
 
189
int_value_list:  
 
190
  int_value_list, int_value | int_value | int_value ;
 
191
 
 
192
char_value:
 
193
  _char | _char | _quid ;
 
194
 
 
195
char_value_list:
 
196
  char_value_list, char_value | char_value | char_value ;
 
197
 
 
198
int_field_name:
 
199
    `pk` | `col_int_key` | `col_int` |
 
200
    `col_bigint` | `col_bigint_key` |
 
201
    `col_int_not_null` | `col_int_not_null_key` ;
 
202
 
 
203
no_pk_int_field_name:
 
204
    `col_int_key` | `col_int` |
 
205
    `col_bigint` | `col_bigint_key` |
 
206
    `col_int_not_null` | `col_int_not_null_key` ;    
 
207
 
 
208
 
 
209
char_field_name:
 
210
      `col_char_10` | `col_char_10_key` | `col_text_not_null` | `col_text_not_null_key` |
 
211
      `col_text_key` | `col_text` | `col_char_10_not_null_key` | `col_char_10_not_null` |
 
212
      `col_char_1024` | `col_char_1024_key` | `col_char_1024_not_null` | `col_char_1024_not_null_key` ;
 
213
 
 
214
large_digit:
 
215
        5 | 6 | 7 | 8 ;
 
216
 
 
217
small_digit:
 
218
        1 | 2 | 3 | 4 ;
 
219
 
 
220
insert_limit:
 
221
   10 | 10 | 25 | 25 | 25 | 25 | 50 | 50 | 100 ;
 
222
 
 
223
value:
 
224
        _digit | _tinyint_unsigned | _varchar(1) | _int_unsigned ;
 
225
 
 
226
zero_one:
 
227
        0 | 0 | 1;