Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | almost all the replacements of TSRMLS_* are done | Anatol Belski | 2014-12-14 | 1 | -3/+1 |
| | | | | | | | Some places have to be yet touched as they use different/custom macros namings for the same. Also some places in the code became redundant now, this is the next task. To name some: ext/mysqlnd, sapi/embed, ext/curl and some smaller places here and there. | ||||
* | second shot on removing TSRMLS_* | Anatol Belski | 2014-12-14 | 1 | -7/+7 |
| | |||||
* | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -275/+275 |
| | |||||
* | validate sockets portable way | Anatol Belski | 2014-11-14 | 1 | -2/+2 |
| | |||||
* | Move smart_str implementation into Zend/ | Nikita Popov | 2014-09-21 | 1 | -1/+1 |
| | | | | | | | | So we can use it there as well... For now I've retained the zend_smart_str_public.h header, though it would probably be better to just move that one struct into zend_types.h. | ||||
* | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
| | |||||
* | Fixed useless or duplicated IS_INTERNED() checks | Dmitry Stogov | 2014-09-19 | 1 | -1/+1 |
| | |||||
* | fixed type | Anatol Belski | 2014-09-16 | 1 | -1/+1 |
| | |||||
* | fix null pointer deref | Anatol Belski | 2014-09-07 | 1 | -2/+2 |
| | |||||
* | master renames phase 6 | Anatol Belski | 2014-08-25 | 1 | -1/+1 |
| | |||||
* | master renames phase 3 | Anatol Belski | 2014-08-25 | 1 | -3/+3 |
| | |||||
* | master renames phase 1 | Anatol Belski | 2014-08-25 | 1 | -11/+11 |
| | |||||
* | ported mysql and mysqlnd | Anatol Belski | 2014-08-19 | 1 | -12/+12 |
| | |||||
* | clean up - avoid realloc | Xinchen Hui | 2014-08-13 | 1 | -4/+3 |
| | |||||
* | Merge remote-tracking branch 'origin/master' into phpng | Xinchen Hui | 2014-07-18 | 1 | -1/+30 |
|\ | | | | | | | | | | | Conflicts: Zend/zend_compile.h ext/openssl/xp_ssl.c | ||||
| * | Easier to read | Andrey Hristov | 2014-07-16 | 1 | -24/+24 |
| | | |||||
| * | Add some trace info as well as update CLIENT_ flags | Andrey Hristov | 2014-07-16 | 1 | -1/+30 |
| | | |||||
* | | Save some strlen | Xinchen Hui | 2014-06-26 | 1 | -5/+5 |
| | | |||||
* | | Fixed invalid read | Xinchen Hui | 2014-06-19 | 1 | -2/+2 |
| | | |||||
* | | Fixed MySQLi built with mysqlnd | Xinchen Hui | 2014-06-19 | 1 | -1/+1 |
| | | |||||
* | | Fixed various bugs (ext/mysql with mysqlnd tests pass) | Xinchen Hui | 2014-06-18 | 1 | -1/+1 |
| | | |||||
* | | Fixed segfault of stream handling | Xinchen Hui | 2014-06-18 | 1 | -1/+1 |
| | | |||||
* | | First set of phpng changes for mysqlnd | Andrey Hristov | 2014-05-20 | 1 | -35/+4 |
| | | |||||
* | | Defensive check | Andrey Hristov | 2014-05-20 | 1 | -4/+4 |
| | | |||||
* | | fix smart string usage (work in progress), ps: a lot of len tests are done ↵ | Pierre Joye | 2014-05-17 | 1 | -13/+13 |
|/ | | | | twice or more, rooms for cleanup here | ||||
* | Merge branch 'PHP-5.6' of git.php.net:php-src into PHP-5.6 | Andrey Hristov | 2014-04-10 | 1 | -29/+80 |
|\ | | | | | | | | | Conflicts: ext/mysqli/tests/mysqli_begin_transaction.phpt | ||||
| * | Merge branch 'PHP-5.5' into PHP-5.6 | Andrey Hristov | 2014-03-20 | 1 | -52/+71 |
| |\ | |||||
| | * | Emit a warning in case of unallowed characters. Fix another place this | Andrey Hristov | 2014-03-20 | 1 | -52/+71 |
| | | | | | | | | | | | | code is used - reuse | ||||
| * | | Merge branch 'PHP-5.5' into PHP-5.6 | Andrey Hristov | 2014-03-20 | 1 | -4/+1 |
| |\ \ | | |/ | | | | | | | | | | Conflicts: ext/mysqli/mysqli_api.c | ||||
| | * | don't replace with ?, just skip it | Andrey Hristov | 2014-03-20 | 1 | -4/+1 |
| | | | |||||
| * | | Merge branch 'PHP-5.5' into PHP-5.6 | Andrey Hristov | 2014-03-19 | 1 | -12/+47 |
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | Conflicts: NEWS configure.in ext/mysqli/mysqli_api.c main/php_version.h | ||||
| | * | Fix problem with mysqli_commt()/mysqli_rollback() | Andrey Hristov | 2014-03-19 | 1 | -12/+47 |
| | | | |||||
| | * | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
| | | | |||||
* | | | New result fetching mode for mysqlnd, which should use less memory but | Andrey Hristov | 2014-04-10 | 1 | -5/+56 |
|/ / | | | | | | | | | | | | | | | implies more memory copy. The old method is still available and can be used. It stays as default. Choosing the method is through a flag to mysqli_query()/mysqli_real_query() New mode can be forced with an INI setting, for all extensions that support this mode (ext/mysql and mysqli, because PDO due to it's architecture can't support it) The setting is mysqlnd.fetch_data_copy=[0|1] | ||||
* | | Switch from a single flag to a flag byte | Andrey Hristov | 2014-03-10 | 1 | -5/+5 |
| | | |||||
* | | Refactor the result set data structures. Move more to the buffered and ↵ | Andrey Hristov | 2014-03-05 | 1 | -2/+1 |
| | | | | | | | | | | | | | | unbuffered substructures. Add methods to these too. Preparing for pluggable interface for returning data to the engine (zvals, c-style, something else) | ||||
* | | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
|/ | |||||
* | 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 fix | Andrey Hristov | 2013-11-26 | 1 | -13/+1 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Andrey Hristov | 2013-11-26 | 1 | -4/+20 |
|\ \ | |/ | | | | | | | | | Conflicts: NEWS ext/mysqlnd/mysqlnd.c | ||||
| * | Fix for Bug #66141 (mysqlnd quote function is wrong with ↵ | Andrey Hristov | 2013-11-26 | 1 | -4/+8 |
| | | | | | | | | NO_BACKSLASH_ESCAPES after failed query) | ||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Xinchen Hui | 2013-11-05 | 1 | -1/+0 |
|\ \ | |/ | | | | | | | | | | | Conflicts: configure.in ext/mysqlnd/mysqlnd.c main/php_version.h | ||||
| * | Typo fix: umknown -> unknown | Lior Kaplan | 2013-10-31 | 1 | -2/+2 |
| | | |||||
| * | Merge branch 'PHP-5.4' | Kalle Sommer Nielsen | 2013-08-05 | 1 | -2/+6 |
| | | |||||
* | | Typo fix: umknown -> unknown | Martin Hujer | 2013-10-31 | 1 | -1/+1 |
| | | |||||
* | | add some tracing | Andrey Hristov | 2013-08-08 | 1 | -6/+13 |
| | | |||||
* | | Merge branch 'PHP-5.5' | Kalle Sommer Nielsen | 2013-08-05 | 1 | -2/+6 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Johannes Schlüter | 2013-07-03 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Make sure return value is initialised in case transaction startup fails | Johannes Schlüter | 2013-07-03 | 1 | -2/+2 |
| | |