~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_yacc.yy

Small fixes

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