~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

A number of dead code removal patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
710
710
      \#    Created field
711
711
  */
712
712
  Field *tmp_table_field_from_field_type(Table *table, bool fixed_length);
713
 
  virtual Item_field *filed_for_view_update();
714
713
 
715
714
  virtual Item *neg_transformer(Session *session);
716
715
  virtual Item *update_value_transformer(unsigned char *select_arg);
859
858
/**
860
859
  Create field for temporary table.
861
860
 
862
 
  @todo: 
863
 
  
 
861
  @todo:
 
862
 
864
863
   This is here for now because it needs the Item::Type. It should live
865
864
   in Field or Table once item.h is clean enough to actually include
866
865
 
890
889
    new_created field
891
890
*/
892
891
Field *create_tmp_field(Session *session,
893
 
                        Table *table, 
 
892
                        Table *table,
894
893
                        Item *item,
895
894
                        Item::Type type,
896
 
                        Item ***copy_func, 
 
895
                        Item ***copy_func,
897
896
                        Field **from_field,
898
897
                        Field **def_field,
899
 
                        bool group, 
 
898
                        bool group,
900
899
                        bool modify_item,
901
900
                        bool table_cant_handle_bit_fields,
902
901
                        bool make_copy_field,