diff options
author | anozdrin@mysql.com <> | 2006-05-18 18:57:50 +0400 |
---|---|---|
committer | anozdrin@mysql.com <> | 2006-05-18 18:57:50 +0400 |
commit | c1113af15c2d2ebeea50487c94b3078855f48d6b (patch) | |
tree | 5a01e6e1e922c0816a9df2c5c09c95719d269269 /sql/structs.h | |
parent | eee166d859a9cd88cdea49981e57299bd0165cec (diff) | |
download | mariadb-git-c1113af15c2d2ebeea50487c94b3078855f48d6b.tar.gz |
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;
Diffstat (limited to 'sql/structs.h')
-rw-r--r-- | sql/structs.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sql/structs.h b/sql/structs.h index e369d8ed7e8..dc835db1e99 100644 --- a/sql/structs.h +++ b/sql/structs.h @@ -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 */ |