~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

  • Committer: Brian Aker
  • Date: 2009-11-30 22:14:26 UTC
  • mto: (1234.1.3 push)
  • mto: This revision was merged to the branch mainline in revision 1235.
  • Revision ID: brian@gaz-20091130221426-19alfhjm3rdhui1g
Remove table_flags from MyISAM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
759
759
          key_nr == table->s->next_number_index &&
760
760
          (insert_id_for_cur_row > 0))
761
761
        goto err;
762
 
      if (table->cursor->ha_table_flags() & HA_DUPLICATE_POS)
 
762
      if (table->cursor->getEngine()->check_flag(HTON_BIT_DUPLICATE_POS))
763
763
      {
764
764
        if (table->cursor->rnd_pos(table->record[1],table->cursor->dup_ref))
765
765
          goto err;