~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_class.h

  • Committer: Monty Taylor
  • Date: 2008-11-17 23:20:25 UTC
  • mto: (589.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081117232025-01m5jfd4l9cn93kb
Removed field.h from common_includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include <drizzled/ha_trx_info.h>
34
34
#include <mysys/my_tree.h>
35
35
#include <drizzled/handler.h>
 
36
#include <drizzled/sql_error.h>
36
37
 
37
38
class Relay_log_info;
38
39
 
42
43
class Lex_input_stream;
43
44
class Rows_log_event;
44
45
class user_var_entry;
 
46
class Copy_field;
45
47
 
46
48
enum enum_enable_or_disable { LEAVE_AS_IS, ENABLE, DISABLE };
47
49
enum enum_delay_key_write { DELAY_KEY_WRITE_NONE, DELAY_KEY_WRITE_ON,
2129
2131
    cleanup();
2130
2132
  }
2131
2133
  void init(void);
2132
 
  inline void cleanup(void)
2133
 
  {
2134
 
    if (copy_field)                             /* Fix for Intel compiler */
2135
 
    {
2136
 
      delete [] copy_field;
2137
 
      save_copy_field= copy_field= 0;
2138
 
    }
2139
 
  }
 
2134
  void cleanup(void);
2140
2135
};
2141
2136
 
2142
2137
class select_union :public select_result_interceptor