mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
This is an implementation of two WL items:
- WL#3158: IM: Instance configuration extensions; - WL#3159: IM: --bootstrap and --start-default-instance modes The following new statements have been added: - CREATE INSTANCE; - DROP INSTANCE; The behaviour of the following statements have been changed: - SET; - UNSET; - FLUSH INSTANCES; - SHOW INSTANCES; - SHOW INSTANCE OPTIONS;
This commit is contained in:
@@ -20,22 +20,6 @@
|
||||
struct st_table;
|
||||
class Field;
|
||||
|
||||
typedef struct st_lex_string
|
||||
{
|
||||
char *str;
|
||||
uint length;
|
||||
} LEX_STRING;
|
||||
|
||||
typedef struct st_lex_string_with_init :public st_lex_string
|
||||
{
|
||||
st_lex_string_with_init(const char *str_arg, uint length_arg)
|
||||
{
|
||||
str= (char*) str_arg;
|
||||
length= length_arg;
|
||||
}
|
||||
} LEX_STRING_WITH_INIT;
|
||||
|
||||
|
||||
typedef struct st_date_time_format {
|
||||
uchar positions[8];
|
||||
char time_separator; /* Separator between hour and minute */
|
||||
|
||||
Reference in New Issue
Block a user