~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log_event.cc

  • Committer: Jay Pipes
  • Date: 2008-08-06 01:14:33 UTC
  • mto: (264.1.6 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: jay@mysql.com-20080806011433-hd347xjpi0jsf2ca
* Ensured all drizzled/field/x.cc files to include mysql_priv.h
* Remove all includes from drizzled/field/x.h files
* pull connect and show function declarations out into separate
  header files
* More cleanup of mysql_priv.h including removing all conditional
  includes
* Modified all plugins to ensure MYSQL_SERVER is not defined and
  that they include the proper drizzled/common_includes.h and not
  the full mysql_priv.h
* Multiple comments to mark TODO items...

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
 
17
 
#ifdef MYSQL_CLIENT
18
 
 
19
 
#include "mysql_priv.h"
20
 
 
21
 
#else
 
17
#ifndef MYSQL_CLIENT
22
18
 
23
19
#ifdef USE_PRAGMA_IMPLEMENTATION
24
20
#pragma implementation                          // gcc: Class implementation
34
30
#include <mysys/my_dir.h>
35
31
#include <drizzled/drizzled_error_messages.h>
36
32
 
37
 
#endif /* MYSQL_CLIENT */
 
33
#endif /* !MYSQL_CLIENT */
38
34
 
39
35
#include <mysys/base64.h>
40
36
#include <mysys/my_bitmap.h>