[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-16216-g80daf34

Piotr Przybylski crackpl at users.sourceforge.net
Sat Aug 20 00:45:06 CEST 2011


The branch, master has been updated
       via  80daf344942c5b60b0c244771b7c18c309edf06d (commit)
      from  c39e7bb14f371736977c250baef03d418166cb1e (commit)


- Log -----------------------------------------------------------------
commit 80daf344942c5b60b0c244771b7c18c309edf06d
Author: Piotr Przybylski <piotrprz at gmail.com>
Date:   Sat Aug 20 00:43:51 2011 +0200

    Advisor: properly handle concurrent_insert on MySQL 5.5.3

-----------------------------------------------------------------------

Summary of changes:
 libraries/advisory_rules.txt |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libraries/advisory_rules.txt b/libraries/advisory_rules.txt
index b2aa21d..97f4454 100644
--- a/libraries/advisory_rules.txt
+++ b/libraries/advisory_rules.txt
@@ -74,9 +74,9 @@ rule 'Slow query logging'
 
 #
 # versions
-rule 'Release Series'
+rule 'Release Series' [!PMA_DRIZZLE]
 	version
-	!PMA_DRIZZLE && substr(value,0,1) <= 5 && substr(value,2,1) < 1
+	substr(value,0,1) <= 5 && substr(value,2,1) < 1
 	The MySQL server version less then 5.1.
 	You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 even more so.
 	Current version: %s | value
@@ -428,9 +428,9 @@ rule 'InnoDB buffer pool size' [system_memory > 0]
 # other
 rule 'MyISAM concurrent inserts'
 	concurrent_insert
-	value == 0
+	value === 0 || value === 'NEVER'
 	Enable concurrent_insert by setting it to 1
-	Setting {concurrent_insert} to 1 reduces contention between readers and writers for a given table. See also <a href="http://dev.mysql.com/doc/refman/5.0/en/concurrent-inserts.html">MySQL Documentation</a>
+	Setting {concurrent_insert} to 1 reduces contention between readers and writers for a given table. See also <a href="http://dev.mysql.com/doc/refman/5.5/en/concurrent-inserts.html">MySQL Documentation</a>
 	concurrent_insert is set to 0
 
 # INSERT DELAYED USAGE


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list