mirror of
https://github.com/MariaDB/server.git
synced 2025-08-26 01:44:06 +03:00
8 lines
278 B
Plaintext
8 lines
278 B
Plaintext
INSTALL PLUGIN simple_parser SONAME 'mypluglib.so';
|
|
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;
|
|
show status like 'a%status';
|
|
Variable_name Value
|