~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Brian Aker
  • Date: 2009-08-17 01:44:23 UTC
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817014423-jxi2qonsumm8mndf
Remove SQL level reference for DELAY (just now done correctly by default in
engine).

Show diffs side-by-side

added added

removed removed

Lines of Context:
523
523
%token  DECIMAL_SYM                   /* SQL-2003-R */
524
524
%token  DECLARE_SYM                   /* SQL-2003-R */
525
525
%token  DEFAULT                       /* SQL-2003-R */
526
 
%token  DELAY_KEY_WRITE_SYM
527
526
%token  DELETE_SYM                    /* SQL-2003-R */
528
527
%token  DESC                          /* SQL-2003-N */
529
528
%token  DESCRIBE                      /* SQL-2003-R */
1411
1410
            Lex->create_info.used_fields|= HA_CREATE_USED_PAGE_CHECKSUM;
1412
1411
            Lex->create_info.page_checksum= $3;
1413
1412
          }
1414
 
        | DELAY_KEY_WRITE_SYM opt_equal ulong_num
1415
 
          {
1416
 
            Lex->create_info.table_options|= $3 ? HA_OPTION_DELAY_KEY_WRITE : HA_OPTION_NO_DELAY_KEY_WRITE;
1417
 
            Lex->create_info.used_fields|= HA_CREATE_USED_DELAY_KEY_WRITE;
1418
 
          }
1419
1413
        | ROW_FORMAT_SYM opt_equal row_types
1420
1414
          {
1421
1415
            Lex->create_info.row_type= $3;
5555
5549
        | DATETIME_SYM             {}
5556
5550
        | DATE_SYM                 {}
5557
5551
        | DAY_SYM                  {}
5558
 
        | DELAY_KEY_WRITE_SYM      {}
5559
5552
        | DIRECTORY_SYM            {}
5560
5553
        | DISABLE_SYM              {}
5561
5554
        | DISCARD                  {}