You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +03:00
fix(client): MCOL-5587: enable quick mode for predictable performance (#3240)
This changeset enables quick (mariadb -q) mode when columnstore is installed. Quick mode precludes client CLI program from storing too much data in memory, preventing out of memory conditions.
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
[client]
|
||||||
|
quick
|
||||||
|
|
||||||
[mysqld]
|
[mysqld]
|
||||||
plugin-load-add=ha_columnstore.so
|
plugin-load-add=ha_columnstore.so
|
||||||
collation_server = utf8_general_ci
|
collation_server = utf8_general_ci
|
||||||
|
@@ -0,0 +1 @@
|
|||||||
|
"Check that quick mode is enabled"
|
@@ -0,0 +1,4 @@
|
|||||||
|
--echo "Check that quick mode is enabled"
|
||||||
|
# the following line will fail the test if quick mode
|
||||||
|
# is not enabled in (some) configuration file as default.
|
||||||
|
system mariadb --help | grep -q -E "^quick +TRUE\$";
|
Reference in New Issue
Block a user