mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
83fea27b61
Put descriptions of plugins into a separate file read by MTR MTR itself has generalised code to read this and set env. variables Removed the *SO variables, updated some tests accordingly New commit: added optional list of plugin names for _LOAD variable Also made changes for the new AUTH_* plugins
11 lines
374 B
Text
11 lines
374 B
Text
--source include/have_simple_parser.inc
|
|
|
|
#
|
|
# BUG#39746 - Debug flag breaks struct definition (server crash)
|
|
#
|
|
--replace_regex /\.dll/.so/
|
|
eval INSTALL PLUGIN simple_parser SONAME '$SIMPLE_PARSER';
|
|
CREATE TABLE t1(a TEXT, b TEXT, FULLTEXT(a) WITH PARSER simple_parser);
|
|
ALTER TABLE t1 ADD FULLTEXT(b) WITH PARSER simple_parser;
|
|
DROP TABLE t1;
|
|
UNINSTALL PLUGIN simple_parser;
|