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

MCOL 2072 Query Stats supress warning when calling libmysql::run

This commit is contained in:
jmrojas2332
2019-11-19 14:07:47 +00:00
committed by Andrew Hutchings
parent 69e7880358
commit 1c0afc95bc
3 changed files with 4 additions and 4 deletions

View File

@ -228,7 +228,7 @@ void QueryStats::insert()
insert << fNumFiles << ", ";
insert << fFileBytes << ")"; // the last 2 fields are not populated yet
ret = mysql.run(insert.str().c_str());
ret = mysql.run(insert.str().c_str(), false);
if (ret != 0)
mysql.handleMySqlError(mysql.getError().c_str(), ret);