~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to drizzled/sql_plugin.cc

  • Committer: Brian Aker
  • Date: 2008-10-03 17:17:25 UTC
  • mfrom: (383.6.7 pluglog)
  • Revision ID: brian@tangent.org-20081003171725-ijf4hf0zm87kaszw
Merging Mark's logging work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
#include <drizzled/server_includes.h>
17
17
#include <mysys/my_getopt.h>
18
18
#include <authentication.h>
 
19
#include <logging.h>
19
20
#include <drizzled/drizzled_error_messages.h>
20
21
#define REPORT_TO_LOG  1
21
22
#define REPORT_TO_USER 2
63
64
  initialize_udf,  /* UDF */
64
65
  0,  /* UDA */
65
66
  0,  /* Audit */
66
 
  0,  /* Logger */
 
67
  logging_initializer,  /* Logger */
67
68
  authentication_initializer  /* Auth */
68
69
};
69
70
 
75
76
  finalize_udf,  /* UDF */
76
77
  0,  /* UDA */
77
78
  0,  /* Audit */
78
 
  0,  /* Logger */
 
79
  logging_finalizer,  /* Logger */
79
80
  authentication_finalizer  /* Auth */
80
81
};
81
82