From 28ca3bfdcaff9af3746ce7f109aede87bf5f8bd7 Mon Sep 17 00:00:00 2001 From: Alexander Nozdrin Date: Tue, 9 Mar 2010 12:52:11 +0300 Subject: 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. --- client/client_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.2.1