From 4fc5f3892cadeaa3e9eddbf84ab05227a370d61b Mon Sep 17 00:00:00 2001 From: Patrick LeBlanc Date: Mon, 5 Nov 2018 13:33:56 -0600 Subject: [PATCH] MCOL-1654. Querystats table creation broken. Escaped the ` chars to make the shell happy. --- dbcon/mysql/install_calpont_mysql.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbcon/mysql/install_calpont_mysql.sh b/dbcon/mysql/install_calpont_mysql.sh index 589894c01..8f8f4be6e 100755 --- a/dbcon/mysql/install_calpont_mysql.sh +++ b/dbcon/mysql/install_calpont_mysql.sh @@ -112,7 +112,7 @@ CREATE TABLE IF NOT EXISTS infinidb_querystats.querystats query varchar(8000), startTime timestamp NOT NULL, endTime timestamp NOT NULL, - `rows` bigint, + \`rows\` bigint, errno int, phyIO bigint, cacheIO bigint,