mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 05:52:05 +00:00
Fixed clang-tidy non-const function issue - 40907 Parameterized views as table functions
This commit is contained in:
parent
4f0f214e84
commit
e256b32fd5
@ -115,7 +115,7 @@ void ASTSelectWithUnionQuery::setHasQueryParameters()
|
||||
}
|
||||
}
|
||||
|
||||
void ASTSelectWithUnionQuery::clearAllowQueryParameters()
|
||||
void ASTSelectWithUnionQuery::clearAllowQueryParameters() // NOLINT
|
||||
{
|
||||
if (!list_of_selects)
|
||||
return;
|
||||
|
@ -37,7 +37,7 @@ public:
|
||||
void setHasQueryParameters();
|
||||
|
||||
//clang-tidy wants it to be const, but it changes flags of children
|
||||
void clearAllowQueryParameters();// NOLINT
|
||||
void clearAllowQueryParameters(); // NOLINT
|
||||
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user