mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg
This commit is contained in:
@@ -201,12 +201,10 @@ class Protocol_text :public Protocol
|
||||
StringBuffer<FLOATING_POINT_BUFFER> buffer;
|
||||
bool store_numeric_string_aux(const char *from, size_t length);
|
||||
public:
|
||||
Protocol_text(THD *thd_arg, ulong prealloc= 0)
|
||||
:Protocol(thd_arg)
|
||||
{
|
||||
if (prealloc)
|
||||
packet->alloc(prealloc);
|
||||
}
|
||||
Protocol_text(THD *thd_arg)
|
||||
:Protocol(thd_arg) {};
|
||||
bool __attribute__((warn_unused_result))
|
||||
allocate(size_t size) { return packet->alloc(size); }
|
||||
void prepare_for_resend() override;
|
||||
bool store_null() override;
|
||||
bool store_tiny(longlong from) override;
|
||||
|
Reference in New Issue
Block a user