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


- Log -----------------------------------------------------------------
commit 80daf344942c5b60b0c244771b7c18c309edf06d
Author: Piotr Przybylski <[email protected]>
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

------------------------------------------------------------------------------
Get a FREE DOWNLOAD! and learn more about uberSVN rich system, 
user administration capabilities and model configuration. Take 
the hassle out of deploying and managing Subversion and the 
tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2
_______________________________________________
Phpmyadmin-git mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/phpmyadmin-git

Reply via email to