1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Add better cache explanations to debug_walk. This is debug only.

This commit is contained in:
David Hall
2016-10-27 15:39:50 -05:00
parent 8f2fca2239
commit 331dfd3a4c
2 changed files with 146 additions and 19 deletions

View File

@ -5277,7 +5277,7 @@ const string CalpontSystemCatalog::TableName::toString() const
ostream& operator<<(ostream& os, const CalpontSystemCatalog::TableAliasName& rhs)
{
os << rhs.schema << '.' << rhs.table << "(" << rhs.alias << "/" << rhs.view
<< ") engineType=" << (rhs.fIsInfiniDB? "InfiniDB" : "ForeignEngine");
<< ") engineType=" << (rhs.fIsInfiniDB? "Columnstore" : "ForeignEngine");
return os;
}