~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/mysql/plugin.h

  • Committer: Mark Atwood
  • Date: 2008-07-12 07:25:25 UTC
  • mto: This revision was merged to the branch mainline in revision 139.
  • Revision ID: me@mark.atwood.name-20080712072525-s1dq9mtwo5td7af7
more hackery to get plugin UDFs working

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