diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2021-03-03 10:34:28 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2021-03-18 08:02:48 +0100 |
commit | f6bb1c117ec7bb22a3bf48fece0196817cda3b26 (patch) | |
tree | 5f571e54adbb5bbd40c40b355c8ff9d338da0271 /client/client_priv.h | |
parent | aa2ff62082c4eb09b1d505af0d0327278c9f7d08 (diff) | |
download | mariadb-git-f6bb1c117ec7bb22a3bf48fece0196817cda3b26.tar.gz |
MDEV-9077 - do not dump sys schema by default (MySQL bug#76735)
Diffstat (limited to 'client/client_priv.h')
-rw-r--r-- | client/client_priv.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/client_priv.h b/client/client_priv.h index 0f2cec47a08..64818d2ab8d 100644 --- a/client/client_priv.h +++ b/client/client_priv.h @@ -126,3 +126,13 @@ enum options_client Name of the performance schema database. */ #define PERFORMANCE_SCHEMA_DB_NAME "performance_schema" + +/** + First mariadb version supporting the sys schema. +*/ +#define FIRST_SYS_SCHEMA_VERSION 100600 + +/** + Name of the sys schema database. +*/ +#define SYS_SCHEMA_DB_NAME "sys" |