mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
bugfix: engine defined table options were not showing up in INFORMATION_SCHEMA.TABLES.CREATE_OPTIONS
This commit is contained in:
@ -336,6 +336,10 @@ public:
|
||||
int4store(Ptr + position,value);
|
||||
}
|
||||
|
||||
void qs_append(const char *str)
|
||||
{
|
||||
qs_append(str, strlen(str));
|
||||
}
|
||||
void qs_append(const char *str, uint32 len);
|
||||
void qs_append(double d);
|
||||
void qs_append(double *d);
|
||||
@ -345,7 +349,15 @@ public:
|
||||
str_length++;
|
||||
}
|
||||
void qs_append(int i);
|
||||
void qs_append(uint i);
|
||||
void qs_append(uint i)
|
||||
{
|
||||
qs_append((ulonglong)i);
|
||||
}
|
||||
void qs_append(ulong i)
|
||||
{
|
||||
qs_append((ulonglong)i);
|
||||
}
|
||||
void qs_append(ulonglong i);
|
||||
|
||||
/* Inline (general) functions used by the protocol functions */
|
||||
|
||||
|
Reference in New Issue
Block a user