~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Brian Aker
  • Date: 2009-04-28 00:17:10 UTC
  • mto: This revision was merged to the branch mainline in revision 999.
  • Revision ID: brian@gaz-20090428001710-gb4v06c9q6j096pk
First pass on removing virt columns

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
   */
112
112
  bool is_created_from_null_item;
113
113
 
114
 
  /* Virtual column data */
115
 
  virtual_column_info *vcol_info;
116
114
  /*
117
115
    Indication that the field is physically stored in tables
118
116
    rather than just generated on SQL queries.
590
588
  uint8_t       interval_id;    // For rea_create_table
591
589
  uint32_t      offset,pack_flag;
592
590
 
593
 
  /* Virtual column expression statement */
594
 
  virtual_column_info *vcol_info;
595
591
  /*
596
592
    Indication that the field is phycically stored in tables
597
593
    rather than just generated on SQL queries.
622
618
            Item *on_update_value, LEX_STRING *comment, char *change,
623
619
            List<String> *interval_list, const CHARSET_INFO * const cs,
624
620
            uint32_t uint_geom_type,
625
 
            enum column_format_type column_format,
626
 
            virtual_column_info *vcol_info);
 
621
            enum column_format_type column_format);
627
622
};
628
623
 
629
624