1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

Removed the last call of postConfigure(RIP). Changed dangerous default setting see MDEV-22197.

This commit is contained in:
Roman Nozdrin
2020-06-03 16:31:56 +00:00
parent 5440977f45
commit ccdfe98409
4 changed files with 64 additions and 27 deletions

View File

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

View File

@@ -1,15 +1,9 @@
#!/bin/bash
#
# $Id$
#
rpmmode=install
pwprompt=" "
for arg in "$@"; do
if [ `expr -- "$arg" : '--rpmmode='` -eq 10 ]; then
rpmmode="`echo $arg | awk -F= '{print $2}'`"
elif [ `expr -- "$arg" : '--tmpdir='` -eq 9 ]; then
if [ `expr -- "$arg" : '--tmpdir='` -eq 9 ]; then
tmpdir="`echo $arg | awk -F= '{print $2}'`"
else
echo "ignoring unknown argument: $arg" 1>&2