mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Fix style check
This commit is contained in:
parent
7112d4ec83
commit
98427319e0
@ -76,7 +76,8 @@ class ValidationChecker : public InDepthQueryTreeVisitor<ValidationChecker>
|
||||
for (size_t i = 0; i < expected_arg_types.size(); ++i)
|
||||
{
|
||||
// Skip lambdas
|
||||
if(WhichDataType(expected_arg_types[i]).isFunction())
|
||||
WhichDataType which_type(expected_arg_types[i]);
|
||||
if(which_type.isFunction())
|
||||
continue;
|
||||
if (!expected_arg_types[i]->equals(*actual_arg_columns[i].type))
|
||||
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
||||
|
Loading…
Reference in New Issue
Block a user