~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.cc

  • Committer: Brian Aker
  • Date: 2009-05-04 22:41:24 UTC
  • mto: This revision was merged to the branch mainline in revision 1004.
  • Revision ID: brian@gaz-20090504224124-372mkplte5uci7mi
Factored out is_stored

Show diffs side-by-side

added added

removed removed

Lines of Context:
823
823
   key_start(0), part_of_key(0), part_of_key_not_clustered(0),
824
824
   part_of_sortkey(0), unireg_check(unireg_check_arg),
825
825
   field_length(length_arg), null_bit(null_bit_arg),
826
 
   is_created_from_null_item(false),
827
 
   is_stored(true)
 
826
   is_created_from_null_item(false)
828
827
{
829
828
  flags=null_ptr ? 0: NOT_NULL_FLAG;
830
829
  comment.str= (char*) "";