~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to conf/maria_bulk_insert.yy

initial import from internal tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
query:
 
2
        create_select | create_select | create_select | drop_table |
 
3
        insert_select | insert_select | insert_select | truncate_table ;
 
4
 
 
5
create_select:
 
6
        CREATE TABLE _letter SELECT * FROM table_name ;
 
7
 
 
8
insert_select:
 
9
        INSERT INTO _letter SELECT * FROM table_name ;
 
10
 
 
11
drop_table:
 
12
        DROP TABLE _letter ;
 
13
 
 
14
truncate_table:
 
15
        TRUNCATE TABLE _letter ;
 
16
 
 
17
table_name:
 
18
        _letter | _table ;