You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
fix(client): MCOL-5587: Add quick-max-column-width for maridb clients.
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. Add quick-max-column-width=0 to prevent extra garbage dashes in output.
This commit is contained in:
committed by
Leonid Fedorov
parent
60dc7550f1
commit
d7cfa15d2a
@ -1,3 +1,7 @@
|
|||||||
|
[mariadb-client]
|
||||||
|
quick
|
||||||
|
quick-max-column-width=0
|
||||||
|
|
||||||
[mysqld]
|
[mysqld]
|
||||||
plugin-load-add=ha_columnstore.so
|
plugin-load-add=ha_columnstore.so
|
||||||
|
|
||||||
|
@ -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