~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/alter_table.cc

  • Committer: Jay Pipes
  • Date: 2010-04-20 18:14:52 UTC
  • mto: This revision was merged to the branch mainline in revision 1501.
  • Revision ID: jpipes@serialcoder-20100420181452-l57dtelwond5xt6g
Cursor::write_row() -> Cursor::doInsertRecord().  Cursor::ha_write_row() -> Cursor::insertRecord()

Show diffs side-by-side

added added

removed removed

Lines of Context:
1449
1449
      copy_ptr->do_copy(copy_ptr);
1450
1450
    }
1451
1451
    prev_insert_id= to->cursor->next_insert_id;
1452
 
    error= to->cursor->ha_write_row(to->record[0]);
 
1452
    error= to->cursor->insertRecord(to->record[0]);
1453
1453
    to->auto_increment_field_not_null= false;
1454
1454
    if (error)
1455
1455
    {