~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to conf/bug.yy

merge from internal tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
query:
 
2
        transaction;
 
3
 
 
4
transaction:
 
5
        START TRANSACTION ; query_list ; COMMIT ;
 
6
 
 
7
query_list:
 
8
        query_item |
 
9
        query_item ; query_list ;
 
10
 
 
11
query_item:
 
12
        select | dml ;
 
13
 
 
14
select:
 
15
        SELECT /* RESULTSET_SAME_DATA_IN_EVERY_ROW _quid */ `int_key` FROM _table ;
 
16
 
 
17
dml:
 
18
        UPDATE _table SET `int_key` = _int_unsigned |
 
19
        DELETE FROM _table LIMIT 1 ;
 
20