Fixed clang-tidy non-const function issue - 40907 Parameterized views as table functions

This commit is contained in:
Smita Kulkarni 2022-10-06 08:55:15 +02:00
parent 4f0f214e84
commit e256b32fd5
2 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ void ASTSelectWithUnionQuery::setHasQueryParameters()
}
}
void ASTSelectWithUnionQuery::clearAllowQueryParameters()
void ASTSelectWithUnionQuery::clearAllowQueryParameters() // NOLINT
{
if (!list_of_selects)
return;

View File

@ -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
};