~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

  • Committer: Brian Aker
  • Date: 2009-12-03 01:17:53 UTC
  • mto: (1237.3.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: brian@gaz-20091203011753-159h2no5m5c5dt9b
Small cleanups, did in MERGE table only engine flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
858
858
/**
859
859
  Create field for temporary table.
860
860
 
861
 
  @todo: 
862
 
  
 
861
  @todo:
 
862
 
863
863
   This is here for now because it needs the Item::Type. It should live
864
864
   in Field or Table once item.h is clean enough to actually include
865
865
 
889
889
    new_created field
890
890
*/
891
891
Field *create_tmp_field(Session *session,
892
 
                        Table *table, 
 
892
                        Table *table,
893
893
                        Item *item,
894
894
                        Item::Type type,
895
 
                        Item ***copy_func, 
 
895
                        Item ***copy_func,
896
896
                        Field **from_field,
897
897
                        Field **def_field,
898
 
                        bool group, 
 
898
                        bool group,
899
899
                        bool modify_item,
900
900
                        bool table_cant_handle_bit_fields,
901
901
                        bool make_copy_field,