Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:38936 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 52264 invoked from network); 14 Jul 2008 11:30:30 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 14 Jul 2008 11:30:30 -0000 Authentication-Results: pb1.pair.com header.from=ulf.wendel@phpdoc.de; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=ulf.wendel@phpdoc.de; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain phpdoc.de from 212.227.126.174 cause and error) X-PHP-List-Original-Sender: ulf.wendel@phpdoc.de X-Host-Fingerprint: 212.227.126.174 moutng.kundenserver.de Received: from [212.227.126.174] ([212.227.126.174:64949] helo=moutng.kundenserver.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 3D/C5-16791-4D83B784 for ; Mon, 14 Jul 2008 07:30:29 -0400 Received: from [192.168.2.22] (p5B06F9A6.dip.t-dialin.net [91.6.249.166]) by mrelayeu.kundenserver.de (node=mrelayeu3) with ESMTP (Nemesis) id 0MKxQS-1KIMG93Xzj-0001Xv; Mon, 14 Jul 2008 13:30:26 +0200 Message-ID: <487B38D7.1000308@phpdoc.de> Date: Mon, 14 Jul 2008 13:30:31 +0200 User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) MIME-Version: 1.0 To: jani.taskinen@iki.fi CC: PHP Developers Mailing List References: <1215966417.4685.14.camel@localhost> <487B1C8E.2010703@phpdoc.de> <487B271F.70105@sci.fi> In-Reply-To: <487B271F.70105@sci.fi> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V01U2FsdGVkX1+m2HMGm+B/H+/1y2OXwgpwdcEjSjd1Qu3AqXO mFMF64pkCSbCg+fTR5fOwzOXwMkMqo9iuSciFd7VijiFt+pwJ4 AKrEzCHwF5PkJZMXJAZ2w== Subject: Re: [PHP-DEV] tentative 5.3 release plan From: ulf.wendel@phpdoc.de (Ulf Wendel) Jani Taskinen schrieb: > Ulf Wendel wrote: > >> We did a tough development sprint in the last weeks to make the patch >> "ready" for the tentative PHP 5.3 release plan. Our internal release >> plan shows no coding between Beta and GA but fixing newly reported bugs. > > What about the already reported (a.k.a. "old") bugs? :) Have a look at the bug overview at http://blog.ulf-wendel.de/?p=190 . Many old PDO_MYSQL bugs have been fixed. I don't claim the list to be complete. If you are worried about any particular bug, let me know. A good number of reported bugs are PDO bugs not driver bugs. For example the LIMIT issue is reported frequently as a PDO_MYSQL bug although it is a side-effect of the PDO SQL parser [1]. Several new bugs have been found in PDO_MYSQL and PDO. We have not worked on the PDO bugs as we have focussed on our driver first. Ilia fixed some of the major ones. Other bug reports are about minor issues. The thingie Johannes is working on is teaching PDO not to copy zvals from the drivers but supporting drivers who want to manage zvals themself, such as mysqlnd does. This change will prevent that we run into another issue where mysqlnd and PDO logic clash and PDO rejects a number and returns NULL instead of the number - the only show stopper I know of. All other issues I see are rather minor ones. Cross platform testing has been performed on: AIX 5.3 ppc64 FC4 x86 FreeBSD 6 x86, x86_64 HP UX 11.23 ia64 MacOS X 10.4 ppc32, x86 RHEL 3 ia64, x86, x86_64 RHEL 4 ia64, x86, x86_64 SLES 9 ia64, x86, x86_64 Suse 10.3 x86, x86_64 Win32 Solaris 8 to 10 failed to compile SPL with (Sun) CC last wednesday. I haven't looked into it yet. Win64 is missing. Anyway, the first X-platform results are very good, given that I haven't "tuned" the tests for x-platform compatibility yet. Ulf [1] http://blog.ulf-wendel.de/?p=191