~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Brian Aker
  • Date: 2010-07-30 02:42:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1679.
  • Revision ID: brian@gaz-20100730024229-3vnq0wmp3ep6hxf5
This replaces the allocation we do for insert/update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
  }
148
148
 
149
149
  unsigned char *record[2]; /**< Pointer to "records" */
150
 
  unsigned char *insert_values; /* used by INSERT ... UPDATE */
 
150
  std::vector<unsigned char> insert_values; /* used by INSERT ... UPDATE */
151
151
  KeyInfo  *key_info; /**< data of keys in database */
152
152
  Field *next_number_field; /**< Set if next_number is activated. @TODO What the heck is the difference between this and the next member? */
153
153
  Field *found_next_number_field; /**< Points to the "next-number" field (autoincrement field) */