~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/mysql/plugin.h

  • Committer: Brian Aker
  • Date: 2008-07-12 20:42:47 UTC
  • mfrom: (134.1.2 drizzle)
  • Revision ID: brian@tangent.org-20080712204247-25xybfz5mgd050zo
Merge Mark's UDF Example

Show diffs side-by-side

added added

removed removed

Lines of Context:
427
427
 
428
428
 
429
429
/*************************************************************************
 
430
  API for UDF plugin. (MYSQL_UDF_PLUGIN)
 
431
*/
 
432
 
 
433
/* handlertons of different MySQL releases are incompatible */
 
434
#define MYSQL_UDF_INTERFACE_VERSION (MYSQL_VERSION_ID << 8)
 
435
 
 
436
/*
 
437
  Here we define only the descriptor structure, that is referred from
 
438
  st_mysql_plugin.
 
439
*/
 
440
 
 
441
struct st_mysql_udf
 
442
{
 
443
  int interface_version;
 
444
};
 
445
 
 
446
 
 
447
/*************************************************************************
430
448
  API for I_S plugin. (MYSQL_INFORMATION_SCHEMA_PLUGIN)
431
449
*/
432
450