clickhouse: improved test [#CONV-7444].

This commit is contained in:
Michael Kolupaev 2013-06-04 11:00:53 +00:00
parent 84050bc8bb
commit b63cd83284

View File

@ -51,6 +51,8 @@ int main(int argc, char ** argv)
} }
std::cout << "\n"; std::cout << "\n";
std::cout << "only consts:\n\n" << analyzer.getConstActions()->dumpActions() << "\n";
if (analyzer.hasAggregation()) if (analyzer.hasAggregation())
{ {
Names key_names; Names key_names;
@ -106,8 +108,6 @@ int main(int argc, char ** argv)
} }
else else
{ {
std::cout << "only consts:\n\n" << analyzer.getConstActions()->dumpActions() << "\n";
if (dynamic_cast<ASTSelectQuery *>(&*root)) if (dynamic_cast<ASTSelectQuery *>(&*root))
{ {
ExpressionActionsChain chain; ExpressionActionsChain chain;
@ -127,7 +127,8 @@ int main(int argc, char ** argv)
} }
else else
{ {
std::cout << analyzer.getActions()->dumpActions() << "\n"; std::cout << "unprojected actions:\n\n" << analyzer.getActions(false)->dumpActions() << "\n";
std::cout << "projected actions:\n\n" << analyzer.getActions(true)->dumpActions() << "\n";
} }
} }