mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Add final to class
This commit is contained in:
parent
26fa920ad5
commit
71fcbefdc7
@ -13,7 +13,7 @@ namespace DB
|
|||||||
/** Accepts HDFS path to file and opens it.
|
/** Accepts HDFS path to file and opens it.
|
||||||
* Closes file by himself (thus "owns" a file descriptor).
|
* Closes file by himself (thus "owns" a file descriptor).
|
||||||
*/
|
*/
|
||||||
class WriteBufferFromHDFS : public BufferWithOwnMemory<WriteBuffer>
|
class WriteBufferFromHDFS final : public BufferWithOwnMemory<WriteBuffer>
|
||||||
{
|
{
|
||||||
struct WriteBufferFromHDFSImpl;
|
struct WriteBufferFromHDFSImpl;
|
||||||
std::unique_ptr<WriteBufferFromHDFSImpl> impl;
|
std::unique_ptr<WriteBufferFromHDFSImpl> impl;
|
||||||
@ -29,7 +29,7 @@ public:
|
|||||||
|
|
||||||
void sync() override;
|
void sync() override;
|
||||||
|
|
||||||
void finalize() final override;
|
void finalize() override;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user