summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_5_3_0RC4'.php-5.3.0RC4SVN Migration2009-06-180-0/+0
|
* 5.3.0 RC 4Johannes Schlüter2009-06-183-4/+4
|
* fix EXPECT section of testGreg Beaver2009-06-181-2/+2
|
* Temporarily disable this optimization causing too much trouble, kept in HEADJohannes Schlüter2009-06-181-0/+6
|
* Fix bug #48215 - Calling a method with the same name as the parent class ↵Scott MacVicar2009-06-182-1/+41
| | | | calls the constructor instead.
* - Updated to version 2009.10 (2009j)Derick Rethans2009-06-181-3/+3
|
* Tests from Berlin test festZoe Slattery2009-06-1834-0/+493
|
* Ah, broken vimrc..Rasmus Lerdorf2009-06-181-3/+3
|
* Fix bug #48592Rasmus Lerdorf2009-06-181-1/+3
|
* Pierre, this can not be so hardJani Taskinen2009-06-171-2/+2
|
* unfuck the file, fucked up by Pierre as usualJani Taskinen2009-06-171-1/+1
|
* - ReorderFelipe Pena2009-06-171-4/+5
|
* - fix NEWS (thx Felipe!)Pierre Joye2009-06-171-1/+1
|
* - update with latest bitsPierre Joye2009-06-171-1/+9
|
* - kill unused varPierre Joye2009-06-171-2/+0
|
* - #47318, UMR when trying to activate user configPierre Joye2009-06-171-9/+40
|
* New test for standard object compare handler. Tested on Windows, Linux and ↵andy wharmby2009-06-172-0/+88
| | | | Linux 64
* New foreach tests. Tested on Windows, Linux and Linux 64 bit.andy wharmby2009-06-176-0/+718
|
* MFB5.2: "Make this happy on gcc2"Hannes Magnusson2009-06-171-0/+4
|
* BFN #48578Felipe Pena2009-06-171-0/+1
|
* MFH:Andrey Hristov2009-06-172-9/+9
| | | | | | | | | | | | | | | | Fix two problems: - The value of mysqli_get_client_info() has been changed recently and did not include "mysqlnd" anymore thus the test suite was thinking the build is always libmysql. This did not kept the suite from running pconn tests - Going back to the libc allocator because the memory arena could be on a persistent connections. If the build is not debug there will be no error but the memory will be freed and in the second use of this pconn freed memory will be used - not good! For now the arena doesn't take an argument whether it should allocate persistently or not, thus persistent is safe for now. Johannes gave his +1 to commit this.
* - MFH: Fixed bug #48578 (Can't build 5.3 on FBSD 4.11) (Rasmus)Felipe Pena2009-06-171-0/+4
|
* MFH Add SplDoublyLinkedList::prev() and fix a memory leak when the iterator ↵Scott MacVicar2009-06-174-0/+82
| | | | pointer isn't at the end
* Additional class related tests.Robin Fernandes2009-06-179-0/+121
|
* fix skipifHannes Magnusson2009-06-171-1/+1
|
* fix skipifHannes Magnusson2009-06-171-1/+1
|
* - fix testPierre Joye2009-06-171-2/+1
|
* - missing --SKIPIF-- headerPierre Joye2009-06-171-1/+2
|
* Need the gcc version check here tooRasmus Lerdorf2009-06-171-1/+1
|
* - fix build when IO_REPARSE_TAG_SYMLINK is not defined (works with 2k+)Pierre Joye2009-06-161-0/+3
|
* - Fixed testsFelipe Pena2009-06-162-2/+8
|
* New strcoll error test. Tested on Windows, Linux and Linux 64.andy wharmby2009-06-161-0/+44
|
* MFH: C-commentsAndrey Hristov2009-06-161-2/+2
|
* - fix readlink in TS SAPIPierre Joye2009-06-161-8/+12
|
* Tweak to make this compile with gcc2Rasmus Lerdorf2009-06-161-1/+1
|
* - MFH: Fixed build (removed trailing comma) patch by Seiji Masugata ↵Felipe Pena2009-06-162-2/+2
| | | | <s.masugata at digicom.dnp.co.jp>
* MFH:Andrey Hristov2009-06-162-8/+74
| | | | | | | | | | | | | | | | | | Memory usage optimisation. mysqlnd is not libmysql. mysqlnd does use the Zend allocator, which means that is easier to hit memory_limit if you have big stored (buffered) result sets. Before with libmysql you won't hit memory_limit because libmysql uses libc's allocator and nothing is checked. Now, with mysqlnd the situation is stricter and it is easier to hit memory_limit. We try to optimize for big result sets. If a result set is larger than 10 rows we will start freeing some data to keep memory usage after 10 rows constant. This will help in the cases where a buffered result set is scrolled forward only and just only once, or mysqlnd will need to decode data from the network buffers again - yes, it is a trade-off between CPU time and memory size. The best for big result sets is of course using unbuffered queries - for comparison : 3 Million rows with buffered take at least 180MB, with buffered you will stay at 3MB, and unbuffered will be just 7-8% slower.
* Fixed testIlia Alshanetsky2009-06-161-1/+2
|
* Fix typo in testandy wharmby2009-06-162-56/+20
|
* - fix titlePierre Joye2009-06-161-1/+1
|
* - fix titlePierre Joye2009-06-161-2/+2
|
* MFH:Andrey Hristov2009-06-166-25/+27
| | | | | | | | | | Hardwire function call instead of using callbacks. We don't actually need callbacks, it was done for making 2 functions static, not to pollute the global functions space but that had its price of 8 bytes overheat per allocation, which is just too much. Also making the app member 32b instead of 64b, which should save additional 4 byte, to the total of 12 byte per allocation of a row buffer.
* New class related tests. Tested on Windows, Linux and Linux 64. Tests ↵andy wharmby2009-06-1616-0/+1227
| | | | written by Iain Lewis
* MFH:Andrey Hristov2009-06-161-4/+7
| | | | | | Use Zend's allocator instead of libc's and also don't try to work on zvals that are NULLs.
* - MFH: Fixed bug #48562 (Reference recursion causes segfault when used in ↵Felipe Pena2009-06-162-1/+37
| | | | wddx_serialize_vars())
* - revert last commit, should not have been appliedPierre Joye2009-06-161-5/+3
|
* - #47767, include_once does not resolve windows symlinks or junctionsPierre Joye2009-06-164-25/+188
|
* - Windows ACL cache support, update existing tests and add a new onePierre Joye2009-06-167-15/+162
|
* - Drop unused codeFelipe Pena2009-06-151-7/+0
|
* New test for bitwise operators. Tested on Linux 64 bitandy wharmby2009-06-157-0/+3556
|