~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

  • Committer: Brian Aker
  • Date: 2011-02-03 20:32:09 UTC
  • mfrom: (2139.1.4 drizzle-build)
  • Revision ID: brian@tangent.org-20110203203209-r1t4knmy15x5n1w2
Rollup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1514
1514
 
1515
1515
  {
1516
1516
    table::Shell tmp_table(share);              // Used during 'CreateField()'
1517
 
    tmp_table.timestamp_field= 0;
1518
 
 
1519
 
    tmp_table.getMutableShare()->db_create_options= 0;
1520
 
    tmp_table.getMutableShare()->blob_ptr_size= portable_sizeof_char_ptr;
1521
1517
 
1522
1518
    if (not table_proto.engine().name().compare("MyISAM"))
1523
1519
      tmp_table.getMutableShare()->db_low_byte_first= true;
1524
1520
    else if (not table_proto.engine().name().compare("MEMORY"))
1525
1521
      tmp_table.getMutableShare()->db_low_byte_first= true;
1526
1522
 
1527
 
    tmp_table.null_row= false;
1528
 
    tmp_table.maybe_null= false;
1529
 
 
1530
1523
    tmp_table.in_use= session;
1531
1524
 
1532
1525
    while ((item=it++))