1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-4166 Change UDF functions called during post/pre-install

Set plugin_maturity = beta
This commit is contained in:
Roman Nozdrin
2020-07-13 12:03:00 +00:00
parent 9604fc5f10
commit 851275b04a
3 changed files with 15 additions and 8 deletions

View File

@ -1,6 +1,6 @@
[mysqld]
plugin-load-add=ha_columnstore.so
plugin-maturity=gamma
plugin-maturity=beta
# Enable compression by default on create, set to NONE to turn off
#columnstore_compression_type=SNAPPY

View File

@ -19,6 +19,9 @@ fi
# DELETE libcalmysql.so entries first as they are in ha_columnstore.so in 1.4.2 onwards
$MDB 2> ${tmpdir}/mysql_install.log <<EOD
DELETE FROM mysql.func WHERE dl='libcalmysql.so';
DELETE FROM mysql.func WHERE dl='ha_columnstore.so';
DELETE FROM mysql.func WHERE dl='libregr_mysql.so';
DELETE FROM mysql.func WHERE dl='libudf_mysql.so';
INSERT INTO mysql.func VALUES ('calgetstats',0,'ha_columnstore.so','function');
INSERT INTO mysql.func VALUES ('calsettrace',2,'ha_columnstore.so','function');
INSERT INTO mysql.func VALUES ('calsetparms',0,'ha_columnstore.so','function');