diff options
author | Alexander Nozdrin <alik@sun.com> | 2010-03-09 12:52:11 +0300 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2010-03-09 12:52:11 +0300 |
commit | 35f5e9c78c25267c301212cfef757cfc933f9541 (patch) | |
tree | c9a11c13958b24f8698ec7560d99a1973bcb8e49 /client/client_priv.h | |
parent | f9a8fa19b76027f9a4165ae1796520a0715b0396 (diff) | |
download | mariadb-git-35f5e9c78c25267c301212cfef757cfc933f9541.tar.gz |
Bug#51832 mysql_upgrade failing on performance_schema tables in mysql-trunk
Before this fix, client tools (mysql_upgrade, mysqlcheck, mysqldump)
would try to process performance schema tables, leading to failures.
The fix is to align FIRST_PERFORMANCE_SCHEMA_VERSION to 5.5.3,
which is the version number of mysql-trunk where the
performance schema is first available.
Diffstat (limited to 'client/client_priv.h')
-rw-r--r-- | client/client_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client_priv.h b/client/client_priv.h index 27ba3c973c5..799f6aaec2f 100644 --- a/client/client_priv.h +++ b/client/client_priv.h @@ -101,7 +101,7 @@ enum options_client /** First mysql version supporting the performance schema. */ -#define FIRST_PERFORMANCE_SCHEMA_VERSION 50599 +#define FIRST_PERFORMANCE_SCHEMA_VERSION 50503 /** Name of the performance schema database. |