mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Added support for ANALYZE TABLE to S3 tables
Other things - Cleaned up error messages for CHECK, REPAIR and OPTIMIZE
This commit is contained in:
@ -114,6 +114,10 @@ public:
|
||||
{ return store_longlong((longlong) from, 1); }
|
||||
inline bool store(String *str)
|
||||
{ return store((char*) str->ptr(), str->length(), str->charset()); }
|
||||
inline bool store(const LEX_CSTRING *from, CHARSET_INFO *cs)
|
||||
{
|
||||
return store(from->str, from->length, cs);
|
||||
}
|
||||
|
||||
virtual bool prepare_for_send(uint num_columns)
|
||||
{
|
||||
|
Reference in New Issue
Block a user