~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log.cc

Merging Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
#include <libdrizzle/gettext.h>
38
38
 
39
39
/* max size of the log message */
40
 
#define MAX_LOG_BUFFER_SIZE 1024
41
 
#define MAX_USER_HOST_SIZE 512
42
 
#define MAX_TIME_SIZE 32
43
40
#define MY_OFF_T_UNDEF (~(my_off_t)0UL)
44
41
 
45
 
#define FLAGSTR(V,F) ((V)&(F)?#F" ":"")
46
 
 
47
42
LOGGER logger;
48
43
 
49
44
DRIZZLE_BIN_LOG mysql_bin_log;
509
504
  return 0;
510
505
}
511
506
 
512
 
#define YESNO(X) ((X) ? "yes" : "no")
513
 
 
514
507
/**
515
508
  This function is called once after each statement.
516
509