~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/common_includes.h

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 * @details
23
23
 *
24
24
 * Previously, the mysql_priv.h file contained a number of conditional
25
 
 * #ifdef MYSQL_SERVER blocks which made it very difficult to determine
 
25
 * #ifdef DRIZZLE_SERVER blocks which made it very difficult to determine
26
26
 * which headers and definitions were actually necessary for plugins to 
27
27
 * include.  The file, and NOT mysql_priv.h, should now be the main included
28
28
 * header for storage engine plugins, as it contains all definitions and 
320
320
 * is hackish.  Put these things into a separate header?  Or fix
321
321
 * InnoDB?  Or does the InnoDB plugin already fix this stuff?
322
322
 */
323
 
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
 
323
#if defined DRIZZLE_SERVER || defined INNODB_COMPATIBILITY_HOOKS
324
324
bool check_global_access(THD *thd, ulong want_access);
325
325
int get_quote_char_for_identifier(THD *thd, const char *name, uint length);
326
326
extern struct system_variables global_system_variables;
337
337
                uint *errors);
338
338
uint filename_to_tablename(const char *from, char *to, uint to_length);
339
339
uint tablename_to_filename(const char *from, char *to, uint to_length);
340
 
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
 
340
#endif /* DRIZZLE_SERVER || INNODB_COMPATIBILITY_HOOKS */
341
341
 
342
342
#endif /* DRIZZLE_SERVER_COMMON_INCLUDES_H */