mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Merge pull request #20228 from ClickHouse/add_some_final_specifiers
Add final to some classes
This commit is contained in:
commit
ec9808bf63
@ -13,7 +13,7 @@ namespace DB
|
||||
*
|
||||
* While using this object, no other allocations in arena are possible.
|
||||
*/
|
||||
class WriteBufferFromArena : public WriteBuffer
|
||||
class WriteBufferFromArena final : public WriteBuffer
|
||||
{
|
||||
private:
|
||||
Arena & arena;
|
||||
|
@ -1203,7 +1203,7 @@ void DDLWorker::runCleanupThread()
|
||||
}
|
||||
|
||||
|
||||
class DDLQueryStatusInputStream : public IBlockInputStream
|
||||
class DDLQueryStatusInputStream final : public IBlockInputStream
|
||||
{
|
||||
public:
|
||||
|
||||
|
@ -12,7 +12,7 @@ class Context;
|
||||
class AccessRightsElements;
|
||||
|
||||
|
||||
class InterpreterKillQueryQuery : public IInterpreter
|
||||
class InterpreterKillQueryQuery final : public IInterpreter
|
||||
{
|
||||
public:
|
||||
InterpreterKillQueryQuery(const ASTPtr & query_ptr_, Context & context_)
|
||||
|
Loading…
Reference in New Issue
Block a user