~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
220
220
    fixed= true;
221
221
  }
222
222
 
223
 
  /**
224
 
   * Save value in field, but don't give any warnings.
225
 
   *
226
 
   * @note
227
 
   *
228
 
   * This is used to temporary store and retrieve a value in a column,
229
 
   * for example in optimizer/range to adjust the key value to fit the column.
230
 
   * Return: Function returns 1 on overflow and -1 on fatal errors
231
 
   */
232
 
  int save_in_field_no_warnings(Field *field, bool no_conversions);
233
 
 
234
223
  virtual int save_in_field(Field *field, bool no_conversions);
235
224
  virtual void save_org_in_field(Field *field)
236
225
  {
903
892
                        Field **def_field,
904
893
                        bool group,
905
894
                        bool modify_item,
906
 
                        bool table_cant_handle_bit_fields,
907
895
                        bool make_copy_field,
908
896
                        uint32_t convert_blob_length);
909
897