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

Fixed a typo that would make the existing engine check always return 'yes'

This commit is contained in:
Patrick LeBlanc
2020-06-20 16:58:36 -04:00
parent 02d9718210
commit eda01308ae

View File

@ -47,7 +47,7 @@ columnstore-post-install manually after solving the authentication issues."
# See if engine columnstore exist
#---------------------------------------------------------------------------
echo "checking for engine columnstore..."
$MDB --execute="show engines" 2> ${tmpDir}/post-mysql-install.log | grep -i columnstore >> ${tmpDir}/post-mysql-install.log &2>1
$MDB --execute="show engines" 2> ${tmpDir}/post-mysql-install.log | grep -i columnstore >> ${tmpDir}/post-mysql-install.log 2>&1
#
# Add compressiontype column to SYSCOLUMN if applicable