You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
MCOL-1601 Removed unused symbols.
This commit is contained in:
@@ -387,9 +387,6 @@ tpl_close ( cpsm_tplh_t* ntplh,
|
|||||||
// Get the query stats
|
// Get the query stats
|
||||||
ByteStream bs;
|
ByteStream bs;
|
||||||
ByteStream::quadbyte qb = 3;
|
ByteStream::quadbyte qb = 3;
|
||||||
//string tmpQueryStats;
|
|
||||||
//string tmpExtendedStats;
|
|
||||||
//string tmpMiniStats;
|
|
||||||
bs << qb;
|
bs << qb;
|
||||||
hndl->write(bs);
|
hndl->write(bs);
|
||||||
|
|
||||||
@@ -411,21 +408,10 @@ tpl_close ( cpsm_tplh_t* ntplh,
|
|||||||
if (bs.length() == 0) break;
|
if (bs.length() == 0) break;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
|
||||||
// MCOL-1601 Server could run a number of subqueries separetely.
|
|
||||||
// If so there will be a number of statistics returned.
|
|
||||||
/*if(hndl->queryStats.size())
|
|
||||||
{
|
|
||||||
bs >> tmpQueryStats, hndl->queryStats += tmpQueryStats;
|
|
||||||
bs >> tmpExtendedStats, hndl->extendedStats += tmpExtendedStats;
|
|
||||||
bs >> hndl->miniStats, hndl->miniStats += tmpMiniStats;
|
|
||||||
}
|
|
||||||
else*/
|
|
||||||
{
|
{
|
||||||
bs >> hndl->queryStats;
|
bs >> hndl->queryStats;
|
||||||
bs >> hndl->extendedStats;
|
bs >> hndl->extendedStats;
|
||||||
bs >> hndl->miniStats;
|
bs >> hndl->miniStats;
|
||||||
}
|
|
||||||
stats.unserialize(bs);
|
stats.unserialize(bs);
|
||||||
stats.setEndTime();
|
stats.setEndTime();
|
||||||
stats.insert();
|
stats.insert();
|
||||||
|
Reference in New Issue
Block a user