~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_class.h

  • Committer: Brian Aker
  • Date: 2008-11-13 02:56:15 UTC
  • mfrom: (575.4.10 devel)
  • Revision ID: brian@tangent.org-20081113025615-snhsi52yb2ivmx6f
Merging Monty's code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
#include <drizzled/global.h>
27
27
#include <drizzled/log.h>
28
 
#include <drizzled/rpl_tblmap.h>
 
28
#include <drizzled/replication/tblmap.h>
29
29
#include <drizzled/protocol.h>
30
30
#include <libdrizzle/password.h>     // rand_struct
31
31
#include <drizzled/sql_locale.h>
41
41
class Rows_log_event;
42
42
 
43
43
enum enum_enable_or_disable { LEAVE_AS_IS, ENABLE, DISABLE };
44
 
enum enum_duplicates { DUP_ERROR, DUP_REPLACE, DUP_UPDATE };
45
44
enum enum_delay_key_write { DELAY_KEY_WRITE_NONE, DELAY_KEY_WRITE_ON,
46
45
                            DELAY_KEY_WRITE_ALL };
47
46
enum enum_slave_exec_mode { SLAVE_EXEC_MODE_STRICT,
2450
2449
void add_diff_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var,
2451
2450
                        STATUS_VAR *dec_var);
2452
2451
 
 
2452
void close_connection(Session *session, uint32_t errcode, bool lock);
 
2453
 
2453
2454
#endif /* DRIZZLE_SERVER */
2454
2455
 
2455
2456
#endif /* DRIZZLED_SQL_CLASS_H */