~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Brian Aker
  • Date: 2009-05-15 07:55:30 UTC
  • mfrom: (991.1.5 for-brian)
  • Revision ID: brian@gaz-20090515075530-ics1z7f23hrjy3av
MErge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
543
543
  memcpy(ptr, ptr + l_offset, pack_length());
544
544
  if (null_ptr)
545
545
    *null_ptr= ((*null_ptr & (unsigned char) ~null_bit) | (null_ptr[l_offset] & null_bit));
 
546
 
 
547
  if(this == table->next_number_field)
 
548
    table->auto_increment_field_not_null= 0;
546
549
}
547
550
 
548
551