summaryrefslogtreecommitdiff
path: root/plugin
Commit message (Collapse)AuthorAgeFilesLines
* Merge jamppa@bk-internal.mysql.com:/home/bk/mysql-5.1jani@a88-113-38-195.elisa-laajakaista.fi2007-02-031-10/+16
|\ | | | | | | into a88-113-38-195.elisa-laajakaista.fi:/home/my/bk/mysql-5.1
| * Fixed problems detected by pushbuildmonty@mysql.com/narttu.mysql.fi2007-01-301-3/+3
| |
| * after merge fixesmonty@mysql.com/narttu.mysql.fi2007-01-291-2/+2
| | | | | | | | Removed
* | Made the example actually do something :)brian@zim.(none)2007-01-253-92/+201
|/ | | | It now demonstrates creating its own thread and shows off how to clean up after itself (creates a really simple heartbeat file)
* Many files:kent@mysql.com/kent-amd64.(none)2006-12-315-13/+43
| | | | | | | | | | Removed "MySQL Finland AB & TCX DataKonsult AB" from copyright header Adjusted year(s) in copyright header Added GPL copyright text my_vle.h, rpl_utility.h, my_vle.c, base64-t.c, rpl_utility.cc: Changed copyright header formatting some plugin_example.c, daemon_example.c: Added "Copyright (C) 2006 MySQL AB" to GPL header
* Many files:kent@mysql.com/kent-amd64.(none)2006-12-271-2/+1
| | | | Changed header to GPL version 2 only
* Merge bk-internal.mysql.com:/data0/bk/mysql-5.1baker@bk-internal.mysql.com2006-11-281-2/+2
|\ | | | | | | into bk-internal.mysql.com:/data0/bk/mysql-5.1-arch
| * Fixed a LOT of compiler warningsmonty@mysql.com/nosik.monty.fi2006-11-271-2/+2
| | | | | | | | | | | | | | Added missing DBUG_RETURN statements (in mysqldump.c) Added missing enums Fixed a lot of wrong DBUG_PRINT() statements, some of which could cause crashes Removed usage of %lld and %p in printf strings as these are not portable or produces different results on different systems.
* | Refactored a number of engines to have correct init/deinit. Added pass ↵brian@zim.(none)2006-11-191-2/+2
| | | | | | | | support for "data" from plugin to plugin generic init to use memory location.
* | This patch fixes the example engine, the example parser, and the example ↵brian@zim.(none)2006-11-1011-4/+142
|/ | | | daemon to compile. AKA You can now test that the interface is actually working :)
* Added license information display to output of plugins schema, and tagged ↵brian@zim.(none)2006-10-051-0/+1
| | | | all plugins with GPL flag.
* minor plugin api fixes:serg@janus.mylan2006-09-071-0/+4
| | | | | | remove #define __attribute__(A) from plugin.h increase API version because placeholders were added more robust definition of min_plugin_interface_version
* add 2 placeholder values for config and system variables.acurtis/antony@xiphis.org/ltantony.xiphis.org2006-08-301-1/+3
|
* Remove compiler warningsmonty@mysql.com2006-06-231-2/+4
| | | | Fixed wrong table flags type in ndbcluster that caused previous commit to fail
* Incompatible ftparser plugin API change.serg@serg.mylan2006-05-281-4/+1
| | | | | mysql_parse() and mysql_add_word() now take a MYSQL_FTPARSER_PARAM*, not a mysql_ftparam.
* BUG#19907 - simple_parser plugin cannot be installedsvoj@april.(none)2006-05-191-1/+1
| | | | | | | | The problem was that simple_parser was compiled as static plugin, which is intended to be linked into server, but not plugged. This patch makes simple_parser to be compiled as dynamic plugin by adding -DMYSQL_DYNAMIC_PLUGIN into CFLAGS.
* fixesserg@sergbook.mysql.com2006-04-302-41/+9
|
* make distcheck and cosmetic fixesserg@sergbook.mysql.com2006-04-291-3/+1
|
* Merge xiphis.org:/home/antony/work2/wl3201.3acurtis@xiphis.org2006-04-243-11/+67
|\ | | | | | | into xiphis.org:/home/antony/work2/wl3201.merge
| * WL#3201acurtis@xiphis.org2006-04-133-8/+69
| | | | | | | | " Configure support for server plugins "
* | fixes for 'make dist' and 'make distcheck'serg@serg.mylan2006-04-121-0/+5
|/
* plugin/fulltext/configure.inserg@serg.mylan2006-04-072-5/+7
| | | | | | no sense in building static library version of a plugin plugin/fulltext/plugin_example.c comments clarified. everything local to a plugin was declared static
* changes to make plugin_example useful as a template:serg@serg.mylan2006-04-066-0/+17
| | | | | force pkglibdir to be in "mysql" package, template files: AUTHORS, ChangeLog, NEWS, README, configure.in
* Makefile.am:kent@mysql.com2006-02-221-1/+1
| | | | | | Change for 'make distcheck' libmysqld.vcproj: Typo
* BUG#17117: header fille "plugin.h" does not have a namespace prefixsvoj@april.(none)2006-02-141-1/+1
| | | | plugin.h has been moved into include/mysql/plugin.h
* Fix another non-portable __attribute__knielsen@mysql.com2006-01-301-2/+1
|
* __attribute__ is (of course) not portableserg@serg.mylan2006-01-301-2/+1
|
* only use "public" types in plugin APIserg@serg.mylan2006-01-161-4/+3
|
* Fixed warnings.svoj@april.(none)2006-01-101-5/+7
|
* WL#2935 - SHOW STATUS support in pluginsserg@serg.mylan2006-01-071-1/+17
| | | | | | | | | | | The patch adds DYNAMIC_ARRAY all_status_vars, which is now the sole source of status information for SHOW STATUS. Status variables can be added to and removed from the array dynamically. SHOW STATUS command uses this array instead of static array from mysqld.cc Compatibility with the old, global list of status variables is preserved in init_server_components(), where this global list is simply appended to all_status_vars.
* cleanupserg@serg.mylan2006-01-041-3/+3
|
* WL#2575 - Fulltext: Parser plugin for FTSsvoj@mysql.com2005-12-283-0/+221
Manual merge.