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

« back to all changes in this revision

Viewing changes to tests/randgen/conf/dbt3/dbt3-joins.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
#
 
2
# This grammar attempts to create realistic queries against the DBT-3 data set. The following rules apply:
 
3
 
4
# * standard DBT-3 prefixes are used for stuff ,e.g. ps = partsupp , r = region , etc.
 
5
#
 
6
# * each join is one of several plausible join chains allowed by the dataset
 
7
#
 
8
# * each WHERE condition is realistic for the column being queried and only uses table that are known to participate in the particular join chain
 
9
#
 
10
# * More AND is used as opposed to OR to keep with the spirit of the original queries from the benchmark
 
11
#
 
12
# * MariaDB's table elimination will remove unnecessary tables that have been joined but for which no WHERE conditions apply
 
13
#
 
14
# * The joinable fields are indexed in both tables and most WHERE conditions also involve indexes. To provide some non-indexed clauses
 
15
# * we include some WHERE conditions on the comment field that appears in each table
 
16
#
 
17
# * In order to have realistic HAVING, for the HAVING queries we only use fields that hold currency ammounts
 
18
#
 
19
 
 
20
query:
 
21
        select_r_n_s_ps_l_o_c | select_p_ps_s_n_r | select_p_ps_l_o_c_r_n_s | currency_select_p_ps_s_l_o_c;
 
22
 
 
23
# region -> nation -> supplier -> partsupp -> lineitem -> orders -> customer
 
24
 
 
25
select_r_n_s_ps_l_o_c:
 
26
        SELECT select_list_r_n_s_ps_l_o_c join_r_n_s_ps_l_o_c WHERE where_r_n_s_ps_l_o_c order_by_1_2 |
 
27
        SELECT aggregate field_r_n_s_ps_l_o_c ) join_r_n_s_ps_l_o_c WHERE where_r_n_s_ps_l_o_c |
 
28
        SELECT field_r_n_s_ps_l_o_c , aggregate field_r_n_s_ps_l_o_c ) join_r_n_s_ps_l_o_c WHERE where_r_n_s_ps_l_o_c GROUP BY 1 asc_desc order_by_1 |
 
29
        SELECT field_r_n_s_ps_l_o_c , field_r_n_s_ps_l_o_c , aggregate field_r_n_s_ps_l_o_c ) join_r_n_s_ps_l_o_c WHERE where_r_n_s_ps_l_o_c GROUP BY 1 asc_desc , 2 asc_desc order_by_1_2 ;
 
30
 
 
31
# part -> partsupp -> supplier -> nation -> region
 
32
 
 
33
select_p_ps_s_n_r:
 
34
        SELECT select_list_p_ps_s_n_r join_p_ps_s_n_r WHERE where_p_ps_s_n_r order_by_1_2 |
 
35
        SELECT aggregate field_p_ps_s_n_r ) join_p_ps_s_n_r WHERE where_p_ps_s_n_r |
 
36
        SELECT field_p_ps_s_n_r , aggregate field_p_ps_s_n_r ) join_p_ps_s_n_r WHERE where_p_ps_s_n_r GROUP BY 1 asc_desc order_by_1 |
 
37
        SELECT field_p_ps_s_n_r , field_p_ps_s_n_r , aggregate field_p_ps_s_n_r ) join_p_ps_s_n_r WHERE where_p_ps_s_n_r GROUP BY 1 asc_desc , 2 asc_desc order_by_1_2 ;
 
38
 
 
39
# part -> partsupp -> lineitem -> orders -> customer -> region -> nation -> supplier
 
40
 
 
41
select_p_ps_l_o_c_r_n_s:
 
42
        SELECT select_list_p_ps_l_o_c_r_n_s join_p_ps_l_o_c_r_n_s WHERE where_p_ps_l_o_c_r_n_s order_by_1_2 |
 
43
        SELECT aggregate field_p_ps_l_o_c_r_n_s ) join_p_ps_l_o_c_r_n_s WHERE where_p_ps_l_o_c_r_n_s |
 
44
        SELECT field_p_ps_l_o_c_r_n_s , aggregate field_p_ps_l_o_c_r_n_s ) join_p_ps_l_o_c_r_n_s WHERE where_p_ps_l_o_c_r_n_s GROUP BY 1 asc_desc order_by_1 |
 
45
        SELECT field_p_ps_l_o_c_r_n_s , field_p_ps_l_o_c_r_n_s , aggregate field_p_ps_l_o_c_r_n_s ) join_p_ps_l_o_c_r_n_s WHERE where_p_ps_l_o_c_r_n_s GROUP BY 1 asc_desc , 2 asc_desc order_by_1_2 ;
 
46
 
 
47
# part -> partsupp -> lineitem -> orders -> customer with currency fields only
 
48
# This allows for a meaningful HAVING condition because the type and the spirit of values in the SELECT list will be known
 
49
 
 
50
currency_select_p_ps_s_l_o_c:
 
51
        SELECT currency_field_p_ps_s_l_o_c AS currency1 , currency_field_p_ps_s_l_o_c AS currency2 join_p_ps_s_l_o_c WHERE where_p_ps_s_l_o_c HAVING currency_having order_by_1_2 |
 
52
        SELECT field_p_ps_s_l_o_c, currency_field_p_ps_s_l_o_c AS currency1 , aggregate currency_field_p_ps_s_l_o_c ) AS currency2 join_p_ps_s_l_o_c WHERE where_p_ps_s_l_o_c GROUP BY 1 , 2 HAVING currency_having order_by_1_2 ;
 
53
 
 
54
asc_desc:
 
55
        | | | | | | ASC | DESC ;
 
56
 
 
57
order_by_1:
 
58
        | | ORDER BY 1 ;                                        # 30% of queries have ORDER BY on a single column
 
59
 
 
60
order_by_1_2:
 
61
        | | | | | | ORDER BY 1 | ORDER BY 2 | ORDER BY 1 , 2 ;  # 30% of queries have ORDER BY on two columns
 
62
 
 
63
join_r_n_s_ps_l_o_c:
 
64
        FROM region join_type nation ON ( r_regionkey = n_regionkey ) join_type supplier ON ( s_nationkey = n_nationkey ) join_type partsupp ON ( s_suppkey = ps_suppkey ) join_type lineitem ON ( partsupp_lineitem_join_cond ) join_type orders ON ( l_orderkey = o_orderkey ) join_type customer ON ( o_custkey = c_custkey ) ;
 
65
 
 
66
join_p_ps_s_n_r:
 
67
        FROM part join_type partsupp ON ( p_partkey = ps_partkey ) join_type supplier ON ( ps_suppkey = s_suppkey ) join_type nation ON ( s_nationkey = n_nationkey ) join_type region ON ( n_regionkey = r_regionkey ) ;
 
68
 
 
69
join_p_ps_l_o_c_r_n_s:
 
70
        FROM part join_type partsupp ON ( p_partkey = ps_partkey ) join_type lineitem ON ( partsupp_lineitem_join_cond ) join_type orders ON ( l_orderkey = o_orderkey ) join_type customer ON ( o_custkey = c_custkey ) join_type nation ON ( c_nationkey = n_nationkey ) join_type supplier ON ( s_nationkey = n_nationkey ) join_type region ON ( n_regionkey = r_regionkey ) ;
 
71
 
 
72
join_p_ps_s_l_o_c:
 
73
        FROM part join_type partsupp ON ( p_partkey = ps_partkey ) join_type supplier ON (s_suppkey = ps_suppkey) join_type lineitem ON ( partsupp_lineitem_join_cond ) join_type orders ON ( l_orderkey = o_orderkey ) join_type customer ON ( o_custkey = c_custkey ) ;
 
74
        
 
75
join_type:
 
76
        JOIN | LEFT JOIN | RIGHT JOIN ;
 
77
 
 
78
partsupp_lineitem_join_cond:
 
79
        ps_partkey = l_partkey AND ps_suppkey = l_suppkey |
 
80
        ps_partkey = l_partkey AND ps_suppkey = l_suppkey |
 
81
        ps_partkey = l_partkey | ps_suppkey = l_suppkey ;
 
82
 
 
83
lineitem_orders_join_cond:
 
84
        l_orderkey = o_orderkey | lineitem_date_field = o_orderdate ;
 
85
 
 
86
lineitem_date_field:
 
87
        l_shipDATE | l_commitDATE | l_receiptDATE ;
 
88
 
 
89
select_list_r_n_s_ps_l_o_c:
 
90
        field_r_n_s_ps_l_o_c , field_r_n_s_ps_l_o_c | field_r_n_s_ps_l_o_c , select_list_r_n_s_ps_l_o_c ;
 
91
 
 
92
field_r_n_s_ps_l_o_c:
 
93
        field_r | field_n | field_s | field_ps | field_l | field_o | field_c ;
 
94
 
 
95
select_list_p_ps_s_n_r:
 
96
        field_p_ps_s_n_r , field_p_ps_s_n_r | field_p_ps_s_n_r , select_list_p_ps_s_n_r ;
 
97
 
 
98
field_p_ps_s_n_r:
 
99
        field_p | field_ps | field_s | field_n | field_r;
 
100
 
 
101
select_list_p_ps_l_o_c_r_n_s:
 
102
        field_p_ps_l_o_c_r_n_s , field_p_ps_l_o_c_r_n_s | field_p_ps_l_o_c_r_n_s , select_list_p_ps_l_o_c_r_n_s ;
 
103
 
 
104
field_p_ps_l_o_c_r_n_s:
 
105
        field_p | field_ps | field_l | field_o | field_c | field_r | field_n | field_s ;
 
106
 
 
107
field_p_ps_s_l_o_c:
 
108
        field_p | field_ps | field_s | field_l | field_o | field_c |;
 
109
 
 
110
currency_field_p_ps_s_l_o_c:
 
111
        p_retailprice | ps_supplycost | l_extendedprice | o_totalprice | s_acctbal | c_acctbal ;
 
112
 
 
113
field_p:
 
114
        p_partkey;
 
115
 
 
116
field_s:
 
117
        s_suppkey | s_nationkey ;
 
118
 
 
119
field_ps:
 
120
        ps_partkey | ps_suppkey ;
 
121
 
 
122
field_l:
 
123
        l_orderkey | l_partkey | l_suppkey | l_linenumber | l_shipDATE | l_commitDATE | l_receiptDATE ;
 
124
 
 
125
field_o:
 
126
        o_orderkey | o_custkey ;
 
127
 
 
128
field_c:
 
129
        c_custkey | c_nationkey ;
 
130
 
 
131
field_n:
 
132
        n_nationkey ;
 
133
 
 
134
field_r:
 
135
        r_regionkey ;
 
136
 
 
137
aggregate:
 
138
        COUNT( distinct | SUM( distinct | MIN( | MAX( ;
 
139
 
 
140
distinct:
 
141
        | | | DISTINCT ;
 
142
 
 
143
where_r_n_s_ps_l_o_c:
 
144
        cond_r_n_s_ps_l_o_c and_or cond_r_n_s_ps_l_o_c and_or cond_r_n_s_ps_l_o_c | where_r_n_s_ps_l_o_c and_or cond_r_n_s_ps_l_o_c ;
 
145
cond_r_n_s_ps_l_o_c:
 
146
        cond_r | cond_n | cond_s | cond_ps | cond_l | cond_o | cond_c | cond_l_o | cond_l_o | cond_s_c | cond_ps_l ;
 
147
 
 
148
where_p_ps_s_n_r:
 
149
        cond_p_ps_s_n_r and_or cond_p_ps_s_n_r and_or cond_p_ps_s_n_r | where_p_ps_s_n_r and_or cond_p_ps_s_n_r ;
 
150
cond_p_ps_s_n_r:
 
151
        cond_p | cond_ps | cond_s | cond_n | cond_r ;
 
152
 
 
153
 
 
154
where_p_ps_l_o_c_r_n_s:
 
155
        cond_p_ps_l_o_c_r_n_s and_or cond_p_ps_l_o_c_r_n_s and_or cond_p_ps_l_o_c_r_n_s | where_p_ps_l_o_c_r_n_s and_or cond_p_ps_l_o_c_r_n_s ;
 
156
cond_p_ps_l_o_c_r_n_s:
 
157
        cond_p | cond_ps | cond_l | cond_o | cond_c | cond_r | cond_n | cond_s ;
 
158
 
 
159
where_p_ps_s_l_o_c:
 
160
        cond_p_ps_s_l_o_c and_or cond_p_ps_s_l_o_c and_or cond_p_ps_s_l_o_c | where_p_ps_s_l_o_c and_or cond_p_ps_s_l_o_c ;
 
161
 
 
162
cond_p_ps_s_l_o_c:
 
163
        cond_p | cond_ps | cond_s | cond_l | cond_o | cond_c ;
 
164
 
 
165
currency_having:
 
166
        currency_having_item |
 
167
        currency_having_item and_or currency_having_item ;
 
168
 
 
169
currency_having_item:
 
170
        currency_having_field currency_clause ;
 
171
 
 
172
currency_having_field:
 
173
        currency1 | currency2 ;
 
174
 
 
175
and_or:
 
176
        AND | AND | AND | AND | OR ;
 
177
 
 
178
#
 
179
# Multi-table WHERE conditions
 
180
#
 
181
 
 
182
cond_l_o:
 
183
        l_extendedprice comp_op o_totalprice | lineitem_date_field comp_op o_orderdate ;
 
184
 
 
185
cond_ps_l:
 
186
        ps_availqty comp_op l_quantity | ps_supplycost comp_op l_extendedprice ;
 
187
 
 
188
cond_s_c:
 
189
        c_nationkey comp_op s_nationkey ;
 
190
        
 
191
#
 
192
# Per-table WHERE conditions
 
193
#
 
194
 
 
195
cond_p:
 
196
        p_partkey partkey_clause |
 
197
        p_retailprice currency_clause |
 
198
        p_comment comment_clause ;
 
199
 
 
200
cond_s:
 
201
        s_suppkey suppkey_clause |
 
202
        s_nationkey nationkey_clause |
 
203
        s_acctbal currency_clause |
 
204
        s_comment comment_clause ;
 
205
 
 
206
cond_ps:
 
207
        ps_partkey partkey_clause |
 
208
        ps_suppkey suppkey_clause |
 
209
        ps_supplycost currency_clause |
 
210
        ps_comment comment_clause ;
 
211
 
 
212
cond_l:
 
213
        l_linenumber linenumber_clause |
 
214
        l_shipDATE shipdate_clause |
 
215
        l_partkey partkey_clause |
 
216
        l_suppkey suppkey_clause |
 
217
        l_receiptDATE receiptdate_clause |
 
218
        l_orderkey orderkey_clause |
 
219
        l_quantity quantity_clause |
 
220
        l_commitDATE commitdate_clause |
 
221
        l_extendedprice currency_clause |
 
222
        l_comment comment_clause ;
 
223
 
 
224
cond_o:
 
225
        o_orderkey orderkey_clause |
 
226
        o_custkey custkey_clause |
 
227
        o_totalprice currency_clause |
 
228
        o_comment comment_clause ;
 
229
 
 
230
cond_c:
 
231
        c_custkey custkey_clause |
 
232
        c_acctbal currency_clause |
 
233
        c_comment comment_clause ;
 
234
 
 
235
cond_n:
 
236
        n_nationkey nationkey_clause |
 
237
        n_comment comment_clause ;
 
238
 
 
239
cond_r:
 
240
        r_regionkey regionkey_clause |
 
241
        r_comment comment_clause ;
 
242
 
 
243
#
 
244
# Per-column WHERE conditions
 
245
#
 
246
 
 
247
comp_op:
 
248
        = | = | = | = | != | > | >= | < | <= | <> ;
 
249
 
 
250
not:
 
251
        | | | | | | | | | NOT ;
 
252
 
 
253
shipdate_clause:
 
254
        comp_op any_date |
 
255
        not IN ( date_list ) |
 
256
        date_between ;
 
257
 
 
258
date_list:
 
259
        date_item , date_item |
 
260
        date_list , date_item ;
 
261
 
 
262
date_item:
 
263
        any_date | any_date | any_date | any_date | any_date |
 
264
        any_date | any_date | any_date | any_date | any_date |
 
265
        any_date | any_date | any_date | any_date | any_date |
 
266
        any_date | any_date | any_date | any_date | any_date |
 
267
        '1992-01-08' | '1998-11-27' ;
 
268
 
 
269
date_between:
 
270
        BETWEEN date_item AND date_item |
 
271
        between_two_dates_in_a_year |
 
272
        between_two_dates_in_a_month |
 
273
        within_a_month ;
 
274
 
 
275
day_month_year:
 
276
        DAY | MONTH | YEAR ;
 
277
 
 
278
any_date:
 
279
        { sprintf("'%04d-%02d-%02d'", $prng->uint16(1992,1998), $prng->uint16(1,12), $prng->uint16(1,28)) } ;
 
280
 
 
281
between_two_dates_in_a_year:
 
282
        { my $year = $prng->uint16(1992,1998); return sprintf("BETWEEN '%04d-%02d-%02d' AND '%04d-%02d-%02d'", $year, $prng->uint16(1,12), $prng->uint16(1,28), $year, $prng->uint16(1,12), $prng->uint16(1,28)) } ;
 
283
 
 
284
between_two_dates_in_a_month:
 
285
        { my $year = $prng->uint16(1992,1998); my $month = $prng->uint16(1,12); return sprintf("BETWEEN '%04d-%02d-%02d' AND '%04d-%02d-%02d'", $year, $month, $prng->uint16(1,28), $year, $month, $prng->uint16(1,28)) } ;
 
286
 
 
287
within_a_month:
 
288
        { my $year = $prng->uint16(1992,1998); my $month = $prng->uint16(1,12); return sprintf("BETWEEN '%04d-%02d-01' AND '%04d-%02d-29'", $year, $month, $year, $month) } ;
 
289
 
 
290
# LINENUMBER
 
291
 
 
292
linenumber_clause:
 
293
        comp_op linenumber_item |
 
294
        not IN ( linenumber_list ) |
 
295
        BETWEEN linenumber_item AND linenumber_item + linenumber_range ;
 
296
 
 
297
linenumber_list:
 
298
        linenumber_item , linenumber_item |
 
299
        linenumber_item , linenumber_list ;
 
300
 
 
301
linenumber_item:
 
302
        _digit; 
 
303
 
 
304
linenumber_range:
 
305
        _digit ;
 
306
 
 
307
# PARTKEY
 
308
 
 
309
partkey_clause:
 
310
        comp_op partkey_item |
 
311
        not IN ( partkey_list ) |
 
312
        BETWEEN partkey_item AND partkey_item + partkey_range ;
 
313
 
 
314
partkey_list:
 
315
        partkey_item , partkey_item |
 
316
        partkey_item , partkey_list ;
 
317
 
 
318
partkey_range:
 
319
        _digit | _tinyint_unsigned;
 
320
 
 
321
partkey_item:
 
322
        _tinyint_unsigned  | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned |
 
323
        _tinyint_unsigned  | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned |
 
324
        _tinyint_unsigned  | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned |
 
325
        _tinyint_unsigned  | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned |
 
326
        _digit | 200 | 0 ;
 
327
 
 
328
# SUPPKEY
 
329
 
 
330
suppkey_clause:
 
331
        comp_op suppkey_item |
 
332
        not IN ( suppkey_list ) |
 
333
        BETWEEN suppkey_item AND suppkey_item + _digit ;
 
334
 
 
335
suppkey_item:
 
336
        _digit | 10 ;
 
337
 
 
338
suppkey_list:
 
339
        suppkey_item , suppkey_item |
 
340
        suppkey_item , suppkey_list ;
 
341
 
 
342
# RECEPITDATE
 
343
 
 
344
receiptdate_clause:
 
345
        comp_op any_date |
 
346
        not IN ( date_list ) |
 
347
        date_between ;
 
348
 
 
349
# COMMITDATE
 
350
 
 
351
commitdate_clause:
 
352
        comp_op any_date |
 
353
        not IN ( date_list ) |
 
354
        date_between ;
 
355
 
 
356
# ORDERKEY
 
357
 
 
358
orderkey_clause:
 
359
        comp_op orderkey_item |
 
360
        not IN ( orderkey_list ) |
 
361
        BETWEEN orderkey_item AND orderkey_item + orderkey_range ;
 
362
 
 
363
orderkey_item:
 
364
        _tinyint_unsigned | { $prng->uint16(1,1500) } ;
 
365
 
 
366
orderkey_list:
 
367
        orderkey_item , orderkey_item |
 
368
        orderkey_item , orderkey_list ;
 
369
 
 
370
orderkey_range:
 
371
        _digit | _tinyint_unsigned ;
 
372
 
 
373
# QUANTITY
 
374
 
 
375
quantity_clause:
 
376
        comp_op quantity_item |
 
377
        not IN ( quantity_list ) |
 
378
        BETWEEN quantity_item AND quantity_item + quantity_range ;
 
379
 
 
380
quantity_list:
 
381
        quantity_item , quantity_item |
 
382
        quantity_item , quantity_list ;
 
383
 
 
384
quantity_item:
 
385
        _digit  | { $prng->uint16(1,50) } ;
 
386
 
 
387
quantity_range:
 
388
        _digit ;
 
389
 
 
390
# CUSTKEY
 
391
 
 
392
custkey_clause:
 
393
        comp_op custkey_item |
 
394
        not IN ( custkey_list ) |
 
395
        BETWEEN custkey_item AND custkey_item + custkey_range ;
 
396
 
 
397
custkey_item:
 
398
        _tinyint_unsigned | { $prng->uint16(1,150) } ;
 
399
 
 
400
custkey_list:
 
401
        custkey_item , custkey_item |
 
402
        custkey_item , custkey_list ;
 
403
 
 
404
custkey_range:
 
405
        _digit | _tinyint_unsigned ;
 
406
 
 
407
# NATIONKEY 
 
408
 
 
409
nationkey_clause:
 
410
        comp_op nationkey_item |
 
411
        not IN ( nationkey_list ) |
 
412
        BETWEEN nationkey_item AND nationkey_item + nationkey_range ;
 
413
 
 
414
nationkey_item:
 
415
        _digit | { $prng->uint16(0,24) } ;
 
416
 
 
417
nationkey_list:
 
418
        nationkey_item , nationkey_item |
 
419
        nationkey_item , nationkey_list ;
 
420
 
 
421
nationkey_range:
 
422
        _digit | _tinyint_unsigned ;
 
423
 
 
424
# REGIONKEY 
 
425
 
 
426
regionkey_clause:
 
427
        comp_op regionkey_item |
 
428
        not IN ( regionkey_list ) |
 
429
        BETWEEN regionkey_item AND regionkey_item + regionkey_range ;
 
430
 
 
431
regionkey_item:
 
432
        1 | 2 | 3 | 4 ;
 
433
 
 
434
regionkey_list:
 
435
        regionkey_item , regionkey_item |
 
436
        regionkey_item , regionkey_list ;
 
437
 
 
438
regionkey_range:
 
439
        1 | 2 | 3 | 4 ;
 
440
 
 
441
# COMMENT
 
442
 
 
443
comment_clause:
 
444
        IS NOT NULL | IS NOT NULL | IS NOT NULL |
 
445
        comp_op _varchar(1) |
 
446
        comment_not LIKE CONCAT( comment_count , '%' ) |
 
447
        BETWEEN _varchar(1) AND _varchar(1) ;
 
448
 
 
449
comment_not:
 
450
        NOT | NOT | NOT | ;
 
451
 
 
452
comment_count:
 
453
        _varchar(1) | _varchar(1) |  _varchar(1) | _varchar(1) | _varchar(2) ;
 
454
 
 
455
# CURRENCIES
 
456
 
 
457
currency_clause:
 
458
        comp_op currency_item |
 
459
        BETWEEN currency_item AND currency_item + currency_range ;
 
460
 
 
461
currency_item:
 
462
        _digit | _tinyint_unsigned | _tinyint_unsigned | _tinyint_unsigned | _mediumint_unsigned ;
 
463
 
 
464
currency_range:
 
465
        _tinyint_unsigned ;