From 85f25278a26752a013956137e74c6e79a315e0fd Mon Sep 17 00:00:00 2001 From: Andrew Hutchings Date: Tue, 5 Nov 2019 14:03:43 +0000 Subject: [PATCH] Don't use calpontsys as default db before creation We don't need to use calpontsys as the default DB for SHOW ENGINES, it likely isn't created yet so don't do it. --- oam/install_scripts/post-mysql-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oam/install_scripts/post-mysql-install b/oam/install_scripts/post-mysql-install index 93b18fb1f..41ff939a2 100755 --- a/oam/install_scripts/post-mysql-install +++ b/oam/install_scripts/post-mysql-install @@ -25,7 +25,7 @@ checkForError() { mysql \ --user=root \ --execute='show engines;' \ - calpontsys | grep -i columnstore + | grep -i columnstore # # Add compressiontype column to SYSCOLUMN if applicable