~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

  • Committer: Brian Aker
  • Date: 2011-01-17 23:44:48 UTC
  • mfrom: (2088.1.5 drizzle-build)
  • Revision ID: brian@tangent.org-20110117234448-0tt6rd6fxa3csdaf
Rollup of all changes for identifier/error

Show diffs side-by-side

added added

removed removed

Lines of Context:
1325
1325
    fill_record(session, table->getFields(), values, true);
1326
1326
}
1327
1327
 
1328
 
void select_insert::send_error(uint32_t errcode,const char *err)
 
1328
void select_insert::send_error(drizzled::error_t errcode,const char *err)
1329
1329
{
1330
 
 
1331
 
 
1332
1330
  my_message(errcode, err, MYF(0));
1333
 
 
1334
 
  return;
1335
1331
}
1336
1332
 
1337
1333
 
1485
1481
                                      List<Item> *items,
1486
1482
                                      bool is_if_not_exists,
1487
1483
                                      DrizzleLock **lock,
1488
 
                                      TableIdentifier::const_reference identifier)
 
1484
                                      identifier::Table::const_reference identifier)
1489
1485
{
1490
1486
  TableShare share(message::Table::INTERNAL);
1491
1487
  uint32_t select_field_count= items->elements;
1734
1730
}
1735
1731
 
1736
1732
 
1737
 
void select_create::send_error(uint32_t errcode,const char *err)
 
1733
void select_create::send_error(drizzled::error_t errcode,const char *err)
1738
1734
{
1739
1735
  /*
1740
1736
    This will execute any rollbacks that are necessary before writing
1748
1744
 
1749
1745
  */
1750
1746
  select_insert::send_error(errcode, err);
1751
 
 
1752
 
  return;
1753
1747
}
1754
1748
 
1755
1749