Update to 5.6.24

This commit is contained in:
Honza Horak 2015-04-09 06:59:20 +02:00
parent df95dc8b67
commit 5bece5dbcd
4 changed files with 33 additions and 35 deletions

1
.gitignore vendored
View File

@ -13,3 +13,4 @@
/mysql-5.6.21.tar.gz /mysql-5.6.21.tar.gz
/mysql-5.6.22.tar.gz /mysql-5.6.22.tar.gz
/mysql-5.6.23.tar.gz /mysql-5.6.23.tar.gz
/mysql-5.6.24.tar.gz

View File

@ -1,8 +1,7 @@
diff --git a/storage/perfschema/pfs_account.cc b/storage/perfschema/pfs_account.cc diff -up mysql-5.6.24/storage/perfschema/pfs_account.cc.p57 mysql-5.6.24/storage/perfschema/pfs_account.cc
index 405364a..ed3bef1 100644 --- mysql-5.6.24/storage/perfschema/pfs_account.cc.p57 2015-03-25 17:34:52.000000000 +0100
--- a/storage/perfschema/pfs_account.cc +++ mysql-5.6.24/storage/perfschema/pfs_account.cc 2015-04-09 06:53:12.383168058 +0200
+++ b/storage/perfschema/pfs_account.cc @@ -201,6 +201,13 @@ static void set_account_key(PFS_account_
@@ -201,6 +201,13 @@ static void set_account_key(PFS_account_key *key,
key->m_key_length= ptr - &key->m_hash_key[0]; key->m_key_length= ptr - &key->m_hash_key[0];
} }
@ -16,30 +15,28 @@ index 405364a..ed3bef1 100644
PFS_account * PFS_account *
find_or_create_account(PFS_thread *thread, find_or_create_account(PFS_thread *thread,
const char *username, uint username_length, const char *username, uint username_length,
diff --git a/storage/perfschema/pfs_digest.cc b/storage/perfschema/pfs_digest.cc diff -up mysql-5.6.24/storage/perfschema/pfs_digest.cc.p57 mysql-5.6.24/storage/perfschema/pfs_digest.cc
index addfac1..68e76cd 100644 --- mysql-5.6.24/storage/perfschema/pfs_digest.cc.p57 2015-04-09 06:53:12.386168058 +0200
--- a/storage/perfschema/pfs_digest.cc +++ mysql-5.6.24/storage/perfschema/pfs_digest.cc 2015-04-09 06:56:20.385213275 +0200
+++ b/storage/perfschema/pfs_digest.cc @@ -170,6 +170,14 @@ static LF_PINS* get_digest_hash_pins(PFS
@@ -168,6 +168,14 @@ static LF_PINS* get_digest_hash_pins(PFS_thread *thread)
return thread->m_digest_hash_pins; return thread->m_digest_hash_pins;
} }
+#if defined(__aarch64__) +#if defined(__aarch64__)
+PFS_statement_stat* +PFS_statement_stat*
+find_or_create_digest(PFS_thread *thread, +find_or_create_digest(PFS_thread *thread,
+ PSI_digest_storage *digest_storage, + const sql_digest_storage *digest_storage,
+ const char *schema_name, + const char *schema_name,
+ uint schema_name_length) __attribute__((optimize (1))); + uint schema_name_length) __attribute__((optimize (1)));
+#endif +#endif
+ +
PFS_statement_stat* PFS_statement_stat*
find_or_create_digest(PFS_thread *thread, find_or_create_digest(PFS_thread *thread,
PSI_digest_storage *digest_storage, const sql_digest_storage *digest_storage,
diff --git a/storage/perfschema/pfs_host.cc b/storage/perfschema/pfs_host.cc diff -up mysql-5.6.24/storage/perfschema/pfs_host.cc.p57 mysql-5.6.24/storage/perfschema/pfs_host.cc
index 0c6f5cf..fc624d7 100644 --- mysql-5.6.24/storage/perfschema/pfs_host.cc.p57 2015-03-25 17:34:52.000000000 +0100
--- a/storage/perfschema/pfs_host.cc +++ mysql-5.6.24/storage/perfschema/pfs_host.cc 2015-04-09 06:53:12.386168058 +0200
+++ b/storage/perfschema/pfs_host.cc @@ -193,6 +193,11 @@ static void set_host_key(PFS_host_key *k
@@ -193,6 +193,11 @@ static void set_host_key(PFS_host_key *key,
key->m_key_length= ptr - &key->m_hash_key[0]; key->m_key_length= ptr - &key->m_hash_key[0];
} }
@ -51,11 +48,10 @@ index 0c6f5cf..fc624d7 100644
PFS_host *find_or_create_host(PFS_thread *thread, PFS_host *find_or_create_host(PFS_thread *thread,
const char *hostname, uint hostname_length) const char *hostname, uint hostname_length)
{ {
diff --git a/storage/perfschema/pfs_instr.cc b/storage/perfschema/pfs_instr.cc diff -up mysql-5.6.24/storage/perfschema/pfs_instr.cc.p57 mysql-5.6.24/storage/perfschema/pfs_instr.cc
index cf0e6fd..8682e04 100644 --- mysql-5.6.24/storage/perfschema/pfs_instr.cc.p57 2015-03-25 17:34:52.000000000 +0100
--- a/storage/perfschema/pfs_instr.cc +++ mysql-5.6.24/storage/perfschema/pfs_instr.cc 2015-04-09 06:53:12.388168058 +0200
+++ b/storage/perfschema/pfs_instr.cc @@ -1199,6 +1199,11 @@ LF_PINS* get_filename_hash_pins(PFS_thre
@@ -1149,6 +1149,11 @@ LF_PINS* get_filename_hash_pins(PFS_thread *thread)
@param create create a file instance if none found @param create create a file instance if none found
@return a file instance, or NULL @return a file instance, or NULL
*/ */
@ -67,11 +63,10 @@ index cf0e6fd..8682e04 100644
PFS_file* PFS_file*
find_or_create_file(PFS_thread *thread, PFS_file_class *klass, find_or_create_file(PFS_thread *thread, PFS_file_class *klass,
const char *filename, uint len, bool create) const char *filename, uint len, bool create)
diff --git a/storage/perfschema/pfs_instr_class.cc b/storage/perfschema/pfs_instr_class.cc diff -up mysql-5.6.24/storage/perfschema/pfs_instr_class.cc.p57 mysql-5.6.24/storage/perfschema/pfs_instr_class.cc
index 4d73396..139a2db 100644 --- mysql-5.6.24/storage/perfschema/pfs_instr_class.cc.p57 2015-03-25 17:34:52.000000000 +0100
--- a/storage/perfschema/pfs_instr_class.cc +++ mysql-5.6.24/storage/perfschema/pfs_instr_class.cc 2015-04-09 06:53:12.389168058 +0200
+++ b/storage/perfschema/pfs_instr_class.cc @@ -1233,6 +1233,11 @@ static int compare_keys(PFS_table_share
@@ -1233,6 +1233,11 @@ static int compare_keys(PFS_table_share *pfs, const TABLE_SHARE *share)
@param share table share @param share table share
@return a table share, or NULL @return a table share, or NULL
*/ */
@ -83,11 +78,10 @@ index 4d73396..139a2db 100644
PFS_table_share* find_or_create_table_share(PFS_thread *thread, PFS_table_share* find_or_create_table_share(PFS_thread *thread,
bool temporary, bool temporary,
const TABLE_SHARE *share) const TABLE_SHARE *share)
diff --git a/storage/perfschema/pfs_user.cc b/storage/perfschema/pfs_user.cc diff -up mysql-5.6.24/storage/perfschema/pfs_user.cc.p57 mysql-5.6.24/storage/perfschema/pfs_user.cc
index 9f53702..2f418a7 100644 --- mysql-5.6.24/storage/perfschema/pfs_user.cc.p57 2015-03-25 17:34:52.000000000 +0100
--- a/storage/perfschema/pfs_user.cc +++ mysql-5.6.24/storage/perfschema/pfs_user.cc 2015-04-09 06:53:12.389168058 +0200
+++ b/storage/perfschema/pfs_user.cc @@ -193,6 +193,12 @@ static void set_user_key(PFS_user_key *k
@@ -193,6 +193,12 @@ static void set_user_key(PFS_user_key *key,
key->m_key_length= ptr - &key->m_hash_key[0]; key->m_key_length= ptr - &key->m_hash_key[0];
} }

View File

@ -77,8 +77,8 @@
%global sameevr %{?epoch:%{epoch}:}%{version}-%{release} %global sameevr %{?epoch:%{epoch}:}%{version}-%{release}
Name: community-mysql Name: community-mysql
Version: 5.6.23 Version: 5.6.24
Release: 4%{?with_debug:.debug}%{?dist} Release: 1%{?with_debug:.debug}%{?dist}
Summary: MySQL client programs and shared libraries Summary: MySQL client programs and shared libraries
Group: Applications/Databases Group: Applications/Databases
URL: http://www.mysql.com URL: http://www.mysql.com
@ -949,6 +949,9 @@ fi
%endif %endif
%changelog %changelog
* Thu Apr 09 2015 Honza Horak <hhorak@redhat.com> - 5.6.24-1
- Update to 5.6.24
* Tue Mar 03 2015 Honza Horak <hhorak@redhat.com> - 5.6.23-4 * Tue Mar 03 2015 Honza Horak <hhorak@redhat.com> - 5.6.23-4
- Do not use scl prefix more than once in paths - Do not use scl prefix more than once in paths
Based on https://www.redhat.com/archives/sclorg/2015-February/msg00038.html Based on https://www.redhat.com/archives/sclorg/2015-February/msg00038.html

View File

@ -1 +1 @@
60344f26eae136a267a0277407926e79 mysql-5.6.23.tar.gz 68e1911f70eb1b02170d4f96bf0f0f88 mysql-5.6.24.tar.gz