changelog               Sat May 30 01:33:10 2009 UTC

  Modified files:              
    /php-src    ChangeLog 
  Log:
  ChangeLog update
  
http://cvs.php.net/viewvc.cgi/php-src/ChangeLog?r1=1.3418&r2=1.3419&diff_format=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.3418 php-src/ChangeLog:1.3419
--- php-src/ChangeLog:1.3418    Fri May 29 01:32:44 2009
+++ php-src/ChangeLog   Sat May 30 01:33:09 2009
@@ -1,3 +1,304 @@
+2009-05-29  Ulf Wendel  <ulf.wen...@phpdoc.de>
+
+    * (PHP_5_3)
+      ext/mysqli/tests/local_infile_tools.inc
+      ext/mysqli/tests/mysqli_set_local_infile_handler.phpt:
+      MFH - Fixing tests - messages/warnings can vary by version
+
+    * ext/mysqli/tests/local_infile_tools.inc
+      ext/mysqli/tests/mysqli_set_local_infile_handler.phpt:
+      Fixing tests - messages/warnings can vary by version
+
+    * (PHP_5_3)
+      ext/mysqli/tests/mysqli_constants.phpt:
+      MFH - Updating test to reflect API changes.
+
+    * ext/mysqli/tests/mysqli_constants.phpt:
+      Updating test to reflect API changes.
+
+    * (PHP_5_3)
+      ext/mysqli/tests/bug44897.phpt:
+      MFH - Skip test for libmysql. The MySQL C-API does not support it, 
mysqlnd
+      does...
+
+    * ext/mysqli/tests/bug44897.phpt:
+      Skip test for libmysql. The MySQL C-API does not support it, mysqlnd
+      does...
+
+2009-05-29  Andrey Hristov  <p...@hristov.com>
+
+    * (PHP_5_3)
+      NEWS:
+      NEWS
+
+    * (PHP_5_3)
+      ext/mysqli/config.m4
+      ext/mysqli/mysqli_api.c
+      ext/mysqli/mysqli_mysqlnd.h
+      ext/mysqlnd/mysqlnd_libmysql_compat.h:
+      MFH:Add support for mysql_stmt_store_result() from libmysql 6.0.8+ and
+      5.4.x
+
+    * ext/mysqli/config.m4
+      ext/mysqli/mysqli_api.c
+      ext/mysqli/mysqli_mysqlnd.h
+      ext/mysqlnd/mysqlnd_libmysql_compat.h:
+      Add support for mysql_stmt_store_result() from libmysql 6.0.8+ and 5.4.x
+
+2009-05-29  Ulf Wendel  <ulf.wen...@phpdoc.de>
+
+    * (PHP_5_3)
+      ext/mysqli/tests/057.phpt
+      ext/mysqli/tests/bug34810.phpt:
+      MFH - 1) The wording of a message can differ by version and by libmysql 
vs.
+      mysqlnd. 2) %i is better than %s
+
+    * ext/mysqli/tests/057.phpt
+      ext/mysqli/tests/bug34810.phpt:
+      1) The wording of a message can differ by version and by libmysql vs.
+      mysqlnd. 2) %i is better than %s
+
+    * (PHP_5_3)
+      ext/mysqli/tests/057.phpt:
+      MFH - Behaviour is undefined with libmysql, accept whatever libmysql may
+      return. With mysqlnd you get the defined value of -1 to indicate 'no
+      value'.
+
+    * ext/mysqli/tests/057.phpt:
+      Behaviour is undefined with libmysql, accept whatever libmysql may 
return.
+      With mysqlnd you get the defined value of -1 to indicate 'no value'.
+
+2009-05-29  Andrey Hristov  <p...@hristov.com>
+
+    * (PHP_5_3)
+      ext/mysqlnd/mysqlnd_ps.c:
+      MFH:Fix for the failing mysql_stmt_execute() test. Data was cleaned after
+      stmt_reset() but it should stay and be freed as later as next
+      stmt_execute()
+
+    * ext/mysqlnd/mysqlnd_ps.c:
+      Fix for the failing mysql_stmt_execute() test. Data was cleaned after
+      stmt_reset() but it should stay and be freed as later as next
+      stmt_execute()
+
+2009-05-29  Ulf Wendel  <ulf.wen...@phpdoc.de>
+
+    * (PHP_5_3)
+      ext/mysqli/tests/mysqli_stmt_affected_rows.phpt:
+      MFH - 'Fixing' test to reflect a libmysql vs. mysqlnd difference. With
+      libmysql it is not defined what mysql_stmt_store_result() shall return
+      when one tries to store the (non-existing) result set of a failed SQL
+      statement,
+      http://dev.mysql.com/doc/refman/6.0/en/mysql-stmt-store-result.html .
+      mysqlnd will detect the SQL failure and return false. libmysql will 
return
+      true. If you want libmysql to change, file a bug report at MySQL... I
+      don't think there is a good way to work around this in the extension
+      itself.
+
+    * ext/mysqli/tests/mysqli_stmt_affected_rows.phpt:
+      'Fixing' test to reflect a libmysql vs. mysqlnd difference. With libmysql
+      it is not defined what mysql_stmt_store_result() shall return when one
+      tries to store the (non-existing) result set of a failed SQL statement,
+      http://dev.mysql.com/doc/refman/6.0/en/mysql-stmt-store-result.html .
+      mysqlnd will detect the SQL failure and return false. libmysql will 
return
+      true. If you want libmysql to change, file a bug report at MySQL... I
+      don't think there is a good way to work around this in the extension
+      itself.
+
+2009-05-29  Zoe Slattery  <zoe.slatt...@googlemail.com>
+
+    * ext/curl/tests/curl_basic_007.phpt
+      ext/curl/tests/curl_basic_007.phpt
+      ext/curl/tests/curl_basic_007.phpt:
+      better fix
+
+2009-05-29  Ulf Wendel  <ulf.wen...@phpdoc.de>
+
+    * (PHP_5_3)
+      ext/mysqli/tests/mysqli_kill.phpt:
+      MFH - Another detail where mysqlnd is superior than libmysql. The
+      mysql_info() from libmysql does not support SELECT:
+      http://dev.mysql.com/doc/refman/6.0/en/mysql-info.html . mysqlnd does
+      support it. Libmysql feature request filed
+      http://bugs.mysql.com/bug.php?id=45189
+
+    * ext/mysqli/tests/mysqli_kill.phpt:
+      Another detail where mysqlnd is superior than libmysql. The mysql_info()
+      from libmysql does not support SELECT:
+      http://dev.mysql.com/doc/refman/6.0/en/mysql-info.html . mysqlnd does
+      support it. Libmysql feature request filed
+      http://bugs.mysql.com/bug.php?id=45189
+
+    * (PHP_5_3)
+      ext/mysqli/tests/mysqli_connect_oo_warnings.phpt:
+      MFH: Weaker test - libmysql/server error messages can differ by version
+
+    * ext/mysqli/tests/mysqli_connect_oo_warnings.phpt:
+      Weaker test - libmysql/server error messages can differ by version
+
+    * (PHP_5_3)
+      ext/mysqli/tests/mysqli_class_mysqli_driver_interface.phpt:
+      MFH - Weaker test: functions are only available if HAVE_EMBEDDED_MYSQLI 
is
+      set. There is probably no proper way to check this condition in the user
+      land.
+
+    * ext/mysqli/tests/mysqli_class_mysqli_driver_interface.phpt:
+      Weaker test: functions are only available if HAVE_EMBEDDED_MYSQLI is set.
+      There is probably no proper way to check this condition in the user land.
+
+    * (PHP_5_3)
+      ext/mysqli/tests/mysqli_change_user_insert_id.phpt:
+      MFH - Skip when using libmysql. Likely a regression bug -
+      http://bugs.mysql.com/bug.php?id=45184
+
+    * ext/mysqli/tests/mysqli_change_user_insert_id.phpt:
+      Skip when using libmysql. Likely a regression bug -
+      http://bugs.mysql.com/bug.php?id=45184
+
+2009-05-29  Zoe Slattery  <zoe.slatt...@googlemail.com>
+
+    * ext/curl/tests/curl_basic_007.phpt
+      ext/curl/tests/curl_basic_007.phpt
+      ext/curl/tests/curl_basic_007.phpt:
+      fixing to work with older levels of libcurl
+
+2009-05-29  Andrey Hristov  <p...@hristov.com>
+
+    * (PHP_5_3)
+      ext/mysqli/tests/bug45289.phpt
+      ext/mysqli/tests/mysqli_options.phpt:
+      MFH:The option has changed the name, hence we change the test
+
+    * ext/mysqli/tests/bug45289.phpt
+      ext/mysqli/tests/mysqli_options.phpt:
+      The option has changed the name, hence we change the test
+
+2009-05-29  Pierre-Alain Joye  <pierre....@gmail.com>
+
+    * ZendEngine2/tests/bug42143.phpt
+      win32/build/config.w32.h.in:
+      - MFB: #42143, the constant NAN is reported as 0 on Windows
+
+    * (PHP_5_3)
+      ZendEngine2/tests/bug42143.phpt
+      win32/build/config.w32.h.in:
+      - MF52: #42143, the constant NAN is reported as 0 on Windows
+
+2009-05-29  Andrey Hristov  <p...@hristov.com>
+
+    * (PHP_5_3)
+      ext/mysqlnd/mysqlnd_statistics.h:
+      MFH:Fix a very well hidden error because of not being careful with CPP.
+      I usually don't make this mistake :)
+
+    * ext/mysqlnd/mysqlnd_statistics.h:
+      Fix a very well hidden error because of not being careful with CPP.
+      I usually don't make this mistake :)
+
+2009-05-29  Zoe Slattery  <zoe.slatt...@googlemail.com>
+
+    * (PHP_5_2)
+      tests/lang/engine_assignExecutionOrder_001.phpt
+      tests/lang/engine_assignExecutionOrder_001.phpt
+      tests/lang/engine_assignExecutionOrder_002.phpt
+      tests/lang/engine_assignExecutionOrder_002.phpt
+      tests/lang/engine_assignExecutionOrder_003.phpt
+      tests/lang/engine_assignExecutionOrder_003.phpt
+      tests/lang/engine_assignExecutionOrder_004.phpt
+      tests/lang/engine_assignExecutionOrder_004.phpt
+      tests/lang/engine_assignExecutionOrder_005.phpt
+      tests/lang/engine_assignExecutionOrder_005.phpt
+      tests/lang/engine_assignExecutionOrder_006.phpt
+      tests/lang/engine_assignExecutionOrder_006.phpt
+      tests/lang/engine_assignExecutionOrder_007.phpt
+      tests/lang/engine_assignExecutionOrder_007.phpt
+      tests/lang/engine_assignExecutionOrder_008.phpt
+      tests/lang/engine_assignExecutionOrder_008.phpt
+      tests/lang/engine_assignExecutionOrder_009.phpt
+      tests/lang/engine_assignExecutionOrder_009.phpt:
+      Engine execution order tests
+
+    * tests/lang/engine_assignExecutionOrder_001.phpt
+      tests/lang/engine_assignExecutionOrder_001.phpt
+      tests/lang/engine_assignExecutionOrder_001.phpt
+      tests/lang/engine_assignExecutionOrder_002.phpt
+      tests/lang/engine_assignExecutionOrder_002.phpt
+      tests/lang/engine_assignExecutionOrder_002.phpt
+      tests/lang/engine_assignExecutionOrder_003.phpt
+      tests/lang/engine_assignExecutionOrder_003.phpt
+      tests/lang/engine_assignExecutionOrder_003.phpt
+      tests/lang/engine_assignExecutionOrder_004.phpt
+      tests/lang/engine_assignExecutionOrder_004.phpt
+      tests/lang/engine_assignExecutionOrder_004.phpt
+      tests/lang/engine_assignExecutionOrder_005.phpt
+      tests/lang/engine_assignExecutionOrder_005.phpt
+      tests/lang/engine_assignExecutionOrder_005.phpt
+      tests/lang/engine_assignExecutionOrder_006.phpt
+      tests/lang/engine_assignExecutionOrder_006.phpt
+      tests/lang/engine_assignExecutionOrder_006.phpt
+      tests/lang/engine_assignExecutionOrder_007.phpt
+      tests/lang/engine_assignExecutionOrder_007.phpt
+      tests/lang/engine_assignExecutionOrder_007.phpt
+      tests/lang/engine_assignExecutionOrder_008.phpt
+      tests/lang/engine_assignExecutionOrder_008.phpt
+      tests/lang/engine_assignExecutionOrder_008.phpt
+      tests/lang/engine_assignExecutionOrder_009.phpt
+      tests/lang/engine_assignExecutionOrder_009.phpt
+      tests/lang/engine_assignExecutionOrder_009.phpt:
+        1.1.4;
+      Engine execution order tests
+
+2009-05-29  Kalle Sommer Nielsen  <kalle....@gmail.com>
+
+    * (PHP_5_3)
+      win32/build/confutils.js:
+      MFH: If we don't have a comment (for the 3rd argument in 
ARG_[ENABLE|WITH],
+      then don't print a comment say "undefined"
+
+    * win32/build/confutils.js:
+      If we don't have a comment (for the 3rd argument in ARG_[ENABLE|WITH], 
then
+      don't print a comment say "undefined"
+
+2009-05-29  Pierre-Alain Joye  <pierre....@gmail.com>
+
+    * (PHP_5_2)
+      NEWS
+      ZendEngine2/tests/bug42143.phpt
+      ZendEngine2/tests/bug42143.phpt
+      ZendEngine2/tests/bug42143.phpt
+      win32/build/config.w32.h.in:
+      - #42143, the constant NAN is reported as 0 on Windows
+
+2009-05-29  Scott MacVicar  <sc...@macvicar.net>
+
+    * (PHP_5_2)
+      NEWS:
+      Bug number was wrong.
+
+2009-05-29  Ilia Alshanetsky  <i...@prohost.org>
+
+    * (PHP_5_2)
+      NEWS:
+      Adjust news order
+
+2009-05-29  Kalle Sommer Nielsen  <kalle....@gmail.com>
+
+    * ext/gd/gd.c:
+      - Cast long to float in the T1* functions, we don't loose any data here
+      * Fix min/max redefs
+
+2009-05-29  Scott MacVicar  <sc...@macvicar.net>
+
+    * (PHP_5_2)
+      NEWS:
+      BFN
+
+    * (PHP_5_2)
+      ext/standard/reg.c
+      ext/standard/reg.h:
+      MFH: Fix bug #48416 - Force a cache size for ereg to stop it getting out 
of
+      control. Lazy LRU here.
+
 2009-05-28  Scott MacVicar  <sc...@macvicar.net>
 
     * (PHP_5_3)
@@ -43354,7 +43655,7 @@
 
     * sapi/litespeed/lsapi_main.c
       sapi/litespeed/lsapilib.c:
-      - Added missing $Id: ChangeLog,v 1.3418 2009/05/29 01:32:44 changelog 
Exp $ tags and nuked c++ comments
+      - Added missing $Id: ChangeLog,v 1.3419 2009/05/30 01:33:09 changelog 
Exp $ tags and nuked c++ comments
 
     * (PHP_5_3)
       ext/intl/locale/locale.c

Reply via email to