~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join.cc

  • Committer: Jay Pipes
  • Date: 2010-02-27 23:47:33 UTC
  • mto: (1309.2.14 build)
  • mto: This revision was merged to the branch mainline in revision 1319.
  • Revision ID: jpipes@serialcoder-20100227234733-0e4pq1zxwluxud00
* Adds CREATE TABLE as a specific CreateTableStatement message in the
replication stream.
* Corrects previous incorrect behaviour where non-MyISAM tables were
incorrectly being defined with PACK_RECORD = TRUE.  This affected the
checksumming of the table.
* There is still one remaining test case failure in the create_table.test
case in the transaction log test suite regarding the incorrect setting
of Table::Index::IndexPart::compare_length.

Show diffs side-by-side

added added

removed removed

Lines of Context:
337
337
  if (error)
338
338
    goto err;
339
339
 
 
340
  /* 
 
341
   * The below will create the new table for
 
342
   * CREATE TABLE ... SELECT
 
343
   *
 
344
   * @see create_table_from_items() in drizzled/sql_insert.cc
 
345
   */
340
346
  if (result && result->prepare(fields_list, unit_arg))
341
347
    goto err;
342
348