~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

  • Committer: Lee Bieber
  • Date: 2011-01-08 03:39:25 UTC
  • mfrom: (2062.1.2 build)
  • Revision ID: kalebral@gmail.com-20110108033925-koobar399kwrm4ba
Merge Brian - parser clean up
Merge Marisa - latest doc updates, fix sphinx warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
1485
1485
                                      List<Item> *items,
1486
1486
                                      bool is_if_not_exists,
1487
1487
                                      DrizzleLock **lock,
1488
 
                                      TableIdentifier &identifier)
 
1488
                                      TableIdentifier::const_reference identifier)
1489
1489
{
1490
1490
  TableShare share(message::Table::INTERNAL);
1491
1491
  uint32_t select_field_count= items->elements;
1577
1577
  Table *table= 0;
1578
1578
  {
1579
1579
    if (not create_table_no_lock(session,
1580
 
                                       identifier,
1581
 
                                       create_info,
1582
 
                                       table_proto,
1583
 
                                       alter_info,
1584
 
                                       false,
1585
 
                                       select_field_count,
1586
 
                                       is_if_not_exists))
 
1580
                                 identifier,
 
1581
                                 create_info,
 
1582
                                 table_proto,
 
1583
                                 alter_info,
 
1584
                                 false,
 
1585
                                 select_field_count,
 
1586
                                 is_if_not_exists))
1587
1587
    {
1588
1588
      if (create_info->table_existed && not identifier.isTmp())
1589
1589
      {