~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/statement_transform.cc

  • Committer: Brian Aker
  • Date: 2010-05-11 04:17:20 UTC
  • mto: (1527.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1528.
  • Revision ID: brian@gaz-20100511041720-rypxk35sn3mcfyww
Remove dead option from parser for tables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
988
988
    ss.clear();
989
989
  }
990
990
 
991
 
  if (options.has_key_block_size())
992
 
  {
993
 
    ss << options.key_block_size();
994
 
    destination.append("\nKEY_BLOCK_SIZE = ", 18);
995
 
    destination.append(ss.str());
996
 
    ss.clear();
997
 
  }
998
 
 
999
 
  if (options.has_block_size())
1000
 
  {
1001
 
    ss << options.block_size();
1002
 
    destination.append("\nBLOCK_SIZE = ", 14);
1003
 
    destination.append(ss.str());
1004
 
    ss.clear();
1005
 
  }
1006
 
 
1007
991
  if (options.has_checksum() &&
1008
992
      options.checksum())
1009
993
    destination.append("\nCHECKSUM = TRUE", 16);