~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2008-08-09 02:26:47 UTC
  • Revision ID: brian@tangent.org-20080809022647-nnlwy9kvu2wciwzd
my_bool conversion in Table

Show diffs side-by-side

added added

removed removed

Lines of Context:
1871
1871
  table->tablenr=thd->current_tablenr++;
1872
1872
  table->used_fields=0;
1873
1873
  table->const_table=0;
1874
 
  table->null_row= table->maybe_null= table->force_index= 0;
 
1874
  table->null_row= false;
 
1875
  table->maybe_null= false;
 
1876
  table->force_index= false;
1875
1877
  table->status=STATUS_NO_RECORD;
1876
 
  return(false);
 
1878
  return false;
1877
1879
}
1878
1880
 
1879
1881
 
2476
2478
  table->tablenr=thd->current_tablenr++;
2477
2479
  table->used_fields=0;
2478
2480
  table->const_table=0;
2479
 
  table->null_row= table->maybe_null= table->force_index= 0;
 
2481
  table->null_row= false;
 
2482
  table->maybe_null= false;
 
2483
  table->force_index= false;
2480
2484
  table->status=STATUS_NO_RECORD;
2481
2485
  table->insert_values= 0;
2482
2486
  /* Catch wrong handling of the auto_increment_field_not_null. */