~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2009-08-24 19:19:39 UTC
  • mfrom: (1121.1.6 merge)
  • Revision ID: brian@gaz-20090824191939-xcn528r7gwjc48h3
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
309
309
  share->db_create_options= (db_create_options & 0x0000FFFF);
310
310
  share->db_options_in_use= share->db_create_options;
311
311
 
312
 
  share->page_checksum= table_options.has_page_checksum() ?
313
 
    (table_options.page_checksum()?HA_CHOICE_YES:HA_CHOICE_NO)
314
 
    : HA_CHOICE_UNDEF;
315
 
 
316
312
  share->row_type= table_options.has_row_type() ?
317
313
    (enum row_type) table_options.row_type() : ROW_TYPE_DEFAULT;
318
314