~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

  • Committer: Eric Day
  • Date: 2009-10-31 21:53:33 UTC
  • mfrom: (1200 staging)
  • mto: This revision was merged to the branch mainline in revision 1202.
  • Revision ID: eday@oddments.org-20091031215333-j94bjoanwmi68p6f
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1391
1391
            statement::CreateTable *statement= (statement::CreateTable *)Lex->statement;
1392
1392
 
1393
1393
            statement->create_info.used_fields|= HA_CREATE_USED_KEY_BLOCK_SIZE;
1394
 
            statement->create_info.key_block_size= $3;
 
1394
 
 
1395
            message::Table::TableOptions *tableopts;
 
1396
            tableopts= ((statement::CreateTable *)Lex->statement)->create_table_proto.mutable_options();
 
1397
            tableopts->set_key_block_size($3);
1395
1398
          }
1396
1399
        ;
1397
1400