1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-24 14:20:59 +03:00

Should clean up in instead of just return. Unlikely to follow this path, but...

This commit is contained in:
David Hall
2016-03-31 11:11:33 -05:00
parent 28783d4782
commit 07856fb1e0

View File

@@ -2609,7 +2609,7 @@ int ha_calpont_impl_rnd_init(TABLE* table)
int status = cp_get_plan(thd, csep);
//if (cp_get_plan(thd, csep) != 0)
if (status > 0)
return ER_INTERNAL_ERROR;
goto internal_error;
else if (status < 0)
return 0;
@@ -3029,7 +3029,7 @@ int ha_calpont_impl_rnd_end(TABLE* table)
{
if (ci->cal_conn_hndl)
{
// send ExeMgr a signal before cloing the connection
// send ExeMgr a signal before closing the connection
ByteStream msg;
ByteStream::quadbyte qb = 0;
msg << qb;