~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/server_includes.h

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
 
71
71
 
72
72
/* mysqld.cc */
 
73
class ListenHandler;
73
74
void refresh_status(Session *session);
74
 
bool drizzle_rm_tmp_tables(void);
 
75
bool drizzle_rm_tmp_tables(ListenHandler &listen_handler);
75
76
void unlink_session(Session *session);
76
77
 
77
78
/* item_func.cc */
99
100
extern char *drizzle_tmpdir;
100
101
extern const LEX_STRING command_name[];
101
102
extern const char *first_keyword, *my_localhost, *delayed_user, *binary_keyword;
102
 
extern const char *myisam_recover_options_str;
103
103
extern const char *in_left_expr_name, *in_additional_cond, *in_having_cond;
104
104
extern const char * const TRG_EXT;
105
105
extern const char * const TRN_EXT;
127
127
extern uint64_t opt_tc_log_size;
128
128
extern uint64_t tc_log_page_waits;
129
129
extern bool opt_innodb;
130
 
extern uint32_t test_flags,select_errors,ha_open_options;
131
 
extern uint32_t protocol_version, drizzled_port, dropping_tables;
 
130
extern uint32_t test_flags,ha_open_options;
 
131
extern uint32_t drizzled_tcp_port, dropping_tables;
132
132
extern uint32_t delay_key_write_options;
133
133
extern bool opt_endinfo, using_udf_functions;
134
134
extern bool locked_in_memory;
135
135
extern bool using_update_log, server_id_supplied;
136
 
extern bool opt_log;
137
136
extern ulong log_output_options;
138
137
extern bool opt_character_set_client_handshake;
139
138
extern bool volatile abort_loop, shutdown_in_progress;
146
145
extern bool opt_noacl;
147
146
extern bool opt_old_style_user_limits;
148
147
extern char *default_tz_name;
149
 
extern char *opt_logname;
150
148
 
151
149
extern TableList general_log, slow_log;
152
150
extern FILE *stderror_file;