mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
clickhouse: improved test [#CONV-7444].
This commit is contained in:
parent
84050bc8bb
commit
b63cd83284
@ -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";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user