~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

  • Committer: Brian Aker
  • Date: 2009-08-05 08:23:47 UTC
  • mfrom: (1109.1.6 merge)
  • Revision ID: brian@gaz-20090805082347-j2l9604jru68iu7s
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
239
239
  upgrade_lock_type(session, &table_list->lock_type, duplic,
240
240
                    values_list.elements > 1);
241
241
 
242
 
  if (session->open_and_lock_tables(table_list))
243
 
    return(true);
 
242
  if (session->openTablesLock(table_list))
 
243
    return true;
244
244
 
245
245
  lock_type= table_list->lock_type;
246
246
 
1430
1430
  NOTES
1431
1431
    This function behaves differently for base and temporary tables:
1432
1432
    - For base table we assume that either table exists and was pre-opened
1433
 
      and locked at open_and_lock_tables() stage (and in this case we just
 
1433
      and locked at openTablesLock() stage (and in this case we just
1434
1434
      emit error or warning and return pre-opened Table object) or special
1435
1435
      placeholder was put in table cache that guarantees that this table
1436
1436
      won't be created or opened until the placeholder will be removed
1466
1466
  if (!(create_info->options & HA_LEX_CREATE_TMP_TABLE) &&
1467
1467
      create_table->table->db_stat)
1468
1468
  {
1469
 
    /* Table already exists and was open at open_and_lock_tables() stage. */
 
1469
    /* Table already exists and was open at openTablesLock() stage. */
1470
1470
    if (create_info->options & HA_LEX_CREATE_IF_NOT_EXISTS)
1471
1471
    {
1472
1472
      create_info->table_existed= 1;            // Mark that table existed
1556
1556
      }
1557
1557
      else
1558
1558
      {
1559
 
        if (!(table= session->open_table(create_table, (bool*) 0,
 
1559
        if (!(table= session->openTable(create_table, (bool*) 0,
1560
1560
                                         DRIZZLE_OPEN_TEMPORARY_ONLY)) &&
1561
1561
            !create_info->table_existed)
1562
1562
        {