From eda01308ae14ad916b7eeb987f71eb21c67e2a57 Mon Sep 17 00:00:00 2001 From: Patrick LeBlanc Date: Sat, 20 Jun 2020 16:58:36 -0400 Subject: [PATCH] Fixed a typo that would make the existing engine check always return 'yes' --- oam/install_scripts/columnstore-post-install.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oam/install_scripts/columnstore-post-install.in b/oam/install_scripts/columnstore-post-install.in index e9678da61..23ef1d2af 100755 --- a/oam/install_scripts/columnstore-post-install.in +++ b/oam/install_scripts/columnstore-post-install.in @@ -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