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/sql_string.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/sql_string.h')
-rw-r--r-- | sql/sql_string.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/sql_string.h b/sql/sql_string.h index 0659f684afe..ddae6368228 100644 --- a/sql/sql_string.h +++ b/sql/sql_string.h @@ -24,8 +24,6 @@ #define NOT_FIXED_DEC 31 #endif -#define STRING_WITH_LEN(X) ((const char*) X), ((uint) (sizeof(X) - 1)) - class String; int sortcmp(const String *a,const String *b, CHARSET_INFO *cs); String *copy_if_not_alloced(String *a,String *b,uint32 arg_length); |