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

Comment debug lines. Change a debug line to be more useful.

This commit is contained in:
David Hall
2016-09-01 12:43:00 -05:00
parent 6714290b6d
commit 09276ff885
3 changed files with 8 additions and 9 deletions

View File

@ -4579,11 +4579,11 @@ int getSelectPlan(gp_walk_info& gwi, SELECT_LEX& select_lex, SCSEP& csep, bool i
// @todo process from subquery
if (table_ptr->derived)
{
cout << "DERIVED TABLE DEBUG" << endl;
// cout << "DERIVED TABLE DEBUG" << endl;
String str;
(table_ptr->derived->first_select())->print(gwi.thd, &str, QT_INFINIDB_DERIVED);
cout << str.ptr() << endl;
cout << "DERIVED TABLE DEBUG END" << endl;
// cout << str.ptr() << endl;
// cout << "DERIVED TABLE DEBUG END" << endl;
SELECT_LEX *select_cursor = table_ptr->derived->first_select();
FromSubQuery fromSub(gwi, select_cursor);