Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update copyright headers to 2017 | Sammy Kaye Powers | 2017-01-04 | 1 | -1/+1 |
| | |||||
* | Fix emails in headers. @mysql.com addresses are no more since many years. | Andrey Hristov | 2016-03-16 | 1 | -3/+3 |
| | |||||
* | Merge branch 'PHP-5.6' into PHP-7.0 | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
|\ | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) | ||||
| * | Happy new year (Update copyright to 2016) | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
| | | |||||
| * | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | Use PHP memory manager for mysqlnd memory pools. | Dmitry Stogov | 2015-04-02 | 1 | -11/+11 |
| | | |||||
* | | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -7/+7 |
| | | |||||
* | | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
|/ | |||||
* | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | bump year | Xinchen Hui | 2013-01-06 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | WS fixes | Andrey Hristov | 2010-09-23 | 1 | -1/+0 |
| | |||||
* | Handle gracefully OOM in mysqlnd_mempool_create and up the stack | Andrey Hristov | 2010-05-03 | 1 | -7/+11 |
| | |||||
* | Handle OOM in block_alloc_get_chunk, and also in the caller | Andrey Hristov | 2010-05-03 | 1 | -22/+23 |
| | | | | | in mysqlnd_wireprotocol.c | ||||
* | Remove unused parameter | Andrey Hristov | 2010-05-03 | 1 | -2/+6 |
| | |||||
* | One more case to handle in case of OOM, in block_alloc_resize_chunk | Andrey Hristov | 2010-05-03 | 1 | -1/+6 |
| | |||||
* | Handle OOM when resizing blocks during data fetch | Andrey Hristov | 2010-05-03 | 1 | -2/+8 |
| | |||||
* | Remove dead code and add possibility to fine tune the size of | Andrey Hristov | 2010-04-22 | 1 | -31/+4 |
| | | | | | a mempool (used for result sets). | ||||
* | - Fix copyrights | Felipe Pena | 2010-04-20 | 1 | -2/+2 |
| | |||||
* | CS + WS changes | Andrey Hristov | 2010-04-15 | 1 | -1/+1 |
| | |||||
* | export more functionality for phpize builds | Andrey Hristov | 2010-01-13 | 1 | -2/+2 |
| | |||||
* | Revert mysqlnd to RC3 state after issues with pconnects | Johannes Schlüter | 2009-06-25 | 1 | -12/+9 |
| | |||||
* | MFH: | Andrey Hristov | 2009-06-17 | 1 | -8/+8 |
| | | | | | | | | | | | | | | | | 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: | Andrey Hristov | 2009-06-16 | 1 | -13/+14 |
| | | | | | | | | | | 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. | ||||
* | MFH: | Andrey Hristov | 2009-06-11 | 1 | -4/+6 |
| | | | | | | Protect the code when variable is NULL, which should never happen, but anyway, you know about "never happens" :) | ||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | MFH: | Andrey Hristov | 2008-11-06 | 1 | -3/+3 |
| | | | | | | Get rid of many defines (which simplifies the code a lot), as well as uint->unsigned int | ||||
* | Fix a leak, memory warning and failing test case. | Andrey Hristov | 2008-02-04 | 1 | -0/+1 |
| | |||||
* | MFH: fix win32 build | Rob Richards | 2008-01-29 | 1 | -2/+2 |
| | |||||
* | some config.w32 fixes | Andrey Hristov | 2008-01-28 | 1 | -0/+201 |
moved mysqlnd's block allocator to a separate file and also now it's part of the connection, no MT problems. |