mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
███████████-appender: tiny modification.
This commit is contained in:
parent
b18bedd18c
commit
57e0a3a25a
@ -75,6 +75,16 @@ public:
|
||||
bytes_written += n;
|
||||
}
|
||||
|
||||
|
||||
inline void write(char x)
|
||||
{
|
||||
nextIfAtEnd();
|
||||
*pos = x;
|
||||
++pos;
|
||||
++bytes_written;
|
||||
}
|
||||
|
||||
|
||||
size_t count()
|
||||
{
|
||||
return bytes_written;
|
||||
|
Loading…
Reference in New Issue
Block a user