Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | test fixes | Ferenc Kovacs | 2015-04-01 | 1 | -2/+0 |
| | |||||
* | Revert "Fix #63486" | Xinchen Hui | 2015-03-09 | 2 | -56/+0 |
| | | | | This reverts commit f4c96ffcb565c1daa76aa58256e4df6f111f8803. | ||||
* | Fix #63486 | Julien Pauli | 2015-02-20 | 2 | -0/+56 |
| | |||||
* | Patch commit d9f85373e32 by moving the float_to_double function to | Keyur Govande | 2015-01-26 | 1 | -2/+2 |
| | | | | a header file. | ||||
* | Fix for bugs #68114 (Build fails on OS X due to undefined symbols) | Keyur Govande | 2015-01-26 | 3 | -10/+43 |
| | | | | | | | | | | | and #68657 (Reading 4 byte floats with Mysqli and libmysqlclient has rounding errors). The patch removes support for Decimal floating point numbers and now defaults to using similar logic as what libmysqlclient does: convert a 4 byte floating point number into a string, and then the string into a double. The quirks of MySQL are maintained as seen in Field_Float::val_str() | ||||
* | Bump year | Xinchen Hui | 2015-01-15 | 16 | -16/+16 |
| | |||||
* | Fix another failing test | Keyur Govande | 2014-08-15 | 1 | -1/+9 |
| | |||||
* | Merge branch 'PHP-5.4' into PHP-5.5 | Keyur Govande | 2014-08-15 | 8 | -14/+87 |
|\ | | | | | | | | | | | | | | | | | | | * PHP-5.4: Add NEWS Fix failing tests Patch for bug #67839 (mysqli does not handle 4-byte floats correctly) Conflicts: ext/mysqli/tests/table.inc | ||||
| * | Fix failing tests | Keyur Govande | 2014-08-14 | 7 | -14/+29 |
| | | |||||
| * | Patch for bug #67839 (mysqli does not handle 4-byte floats correctly) | Keyur Govande | 2014-08-14 | 1 | -0/+58 |
| | | | | | | | | | | | | | | | | | | | | | | Before the patch, a value of 9.99 in a FLOAT column came out of mysqli as 9.9998998641968. This is because it would naively cast a 4-byte float into PHP's internal 8-byte double. To fix this, with GCC we use the built-in decimal support to "up-convert" the 4-byte float to a 8-byte double. When that is not available, we fall back to converting the float to a string and then converting the string to a double. This mimics what MySQL does. | ||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Andrey Hristov | 2014-08-06 | 1 | -12/+34 |
|\ \ | |/ | |||||
| * | Add EXPECTF | Andrey Hristov | 2014-08-06 | 1 | -12/+34 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Andrey Hristov | 2014-08-06 | 1 | -0/+98 |
|\ \ | |/ | | | | | | | | | | | Conflicts: NEWS configure.in main/php_version.h | ||||
| * | Fix handling of multi-result sets with PS...used to clean not only | Andrey Hristov | 2014-08-06 | 1 | -0/+98 |
| | | | | | | | | the result set but the whole PS. | ||||
* | | Merge commit '8b9719d' into PHP-5.5 | Rasmus Lerdorf | 2014-07-30 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | * commit '8b9719d': We need to turn off any strict mode here for this warning to show up | ||||
| * | We need to turn off any strict mode here for this warning to show up | Rasmus Lerdorf | 2014-07-30 | 1 | -0/+3 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Dmitry Stogov | 2014-06-20 | 3 | -9/+9 |
|\ \ | |/ | | | | | | | * PHP-5.4: Fixed MarinaDB support | ||||
| * | Fixed MarinaDB support | Dmitry Stogov | 2014-06-20 | 3 | -9/+9 |
| | | |||||
* | | Suppress test failure with MySQL 5.7 | Andrey Hristov | 2014-06-18 | 1 | -1/+1 |
| | | |||||
* | | Add test | Andrey Hristov | 2014-04-14 | 1 | -0/+119 |
| | | |||||
* | | Fix test | Andrey Hristov | 2014-03-26 | 1 | -35/+20 |
| | | |||||
* | | Emit a warning in case of unallowed characters. Fix another place this | Andrey Hristov | 2014-03-20 | 4 | -62/+86 |
| | | | | | | | | code is used - reuse | ||||
* | | don't replace with ?, just skip it | Andrey Hristov | 2014-03-20 | 1 | -93/+93 |
| | | |||||
* | | Fix problem with mysqli_commt()/mysqli_rollback() | Andrey Hristov | 2014-03-19 | 2 | -25/+90 |
| | | |||||
* | | Add a test | Andrey Hristov | 2014-03-18 | 1 | -0/+140 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Remi Collet | 2014-02-27 | 4 | -1/+46 |
|\ \ | |/ | | | | | | | | | | | * PHP-5.4: NEWS test for bug #66762 Fixed Bug #66762 Segfault in mysqli_stmt::bind_result() when link closed | ||||
| * | test for bug #66762 | Remi Collet | 2014-02-27 | 1 | -0/+26 |
| | | |||||
| * | Fixed Bug #66762 Segfault in mysqli_stmt::bind_result() when link closed | Remi Collet | 2014-02-27 | 3 | -1/+20 |
| | | | | | | | | | | | | | | | | | | | | Each new mysqli_stmt now increase the refcount of the link object. So the link is really destroy after all statements. Only implemented with libmysqlclient, as mysqlnd already implement this internally. So, libmysqlclient and mysqlnd have the same behavior. | ||||
| * | Bump year | Xinchen Hui | 2014-01-03 | 17 | -17/+17 |
| | | |||||
* | | Bump year | Xinchen Hui | 2014-01-03 | 16 | -16/+16 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Andrey Hristov | 2013-12-04 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix loss of precision | Andrey Hristov | 2013-12-04 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Andrey Hristov | 2013-11-21 | 1 | -0/+101 |
|\ \ | |/ | |||||
| * | Fix for Bug #66124 (mysqli under mysqlnd loses precision when bind_param ↵ | Andrey Hristov | 2013-11-21 | 1 | -0/+101 |
| | | | | | | | | with 'i') | ||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Xinchen Hui | 2013-11-08 | 2 | -1/+25 |
|\ \ | |/ | |||||
| * | Fixed Bug #66043 (Segfault calling bind_param() on mysqli) | Xinchen Hui | 2013-11-08 | 2 | -1/+25 |
| | | | | | | | | | | Although the doc said it is (unsigned int *), but it is ulong* in the libmysql 5.0 's source codes | ||||
* | | Fix long-standing visual pain point: the misalignment of './configure help' ↵ | Christopher Jones | 2013-08-06 | 1 | -3/+4 |
| | | | | | | | | | | | | text. Whitespace changes and a couple of grammar fixes. | ||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2013-08-04 | 1 | -1/+1 |
|\ \ | |/ | | | | | | | | | | | | | * PHP-5.4: non living code related typo fixes Conflicts: Zend/zend_compile.c | ||||
| * | non living code related typo fixes | Veres Lajos | 2013-08-04 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Anatol Belski | 2013-07-16 | 1 | -1/+1 |
|\ \ | |/ | | | | | | | * PHP-5.4: fix TS build | ||||
| * | fix TS build | Anatol Belski | 2013-07-16 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Johannes Schlüter | 2013-07-16 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Make zval2myslqnd implementations aware of inheritance | Johannes Schlüter | 2013-07-16 | 1 | -1/+1 |
| | | |||||
| * | typo fixes | Veres Lajos | 2013-07-15 | 3 | -4/+4 |
| | | |||||
| * | Merge branch 'PHP-5.4' of ssh://git.php.net/php-src into PHP-5.4 | Andrey Hristov | 2013-07-08 | 1 | -2/+2 |
| |\ | | | | | | | | | | | | | Conflicts: NEWS | ||||
* | | | typo fixes | Veres Lajos | 2013-07-15 | 3 | -4/+4 |
| | | | |||||
* | | | Merge branch 'PHP-5.5' of ssh://git.php.net/php-src into PHP-5.5 | Andrey Hristov | 2013-07-08 | 1 | -2/+2 |
|\ \ \ | |||||
| * \ \ | Merge branch 'PHP-5.4' into PHP-5.5 | Johannes Schlüter | 2013-07-03 | 1 | -2/+2 |
| |\ \ \ | | | |/ | | |/| | | | | | | | | | Conflicts: Zend/acinclude.m4 | ||||
| | * | | Make sure result is initilized | Johannes Schlüter | 2013-07-03 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | Practically this could only be an issue when overriding mysqlnd from an extension, but makes static analysis happy | ||||
* | | | | Merge branch 'PHP-5.4' into PHP-5.5 | Andrey Hristov | 2013-07-08 | 1 | -0/+50 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | Conflicts: NEWS |