summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_wireprotocol.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix emails in headers. @mysql.com addresses are no more since many years.Andrey Hristov2016-03-161-4/+3
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * Fix for Bug #70384 mysqli_real_query(): Unknown type 245 sent by the serverAndrey Hristov2015-09-231-0/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | Fix for Bug #70384 mysqli_real_query(): Unknown type 245 sent by the serverAndrey Hristov2015-09-231-0/+1
| |
* | Fix mysqlnd warningsNikita Popov2015-07-171-4/+2
| |
* | Use ZSTR_ API to access zend_string elements (this is just renaming without ↵Dmitry Stogov2015-06-301-7/+7
| | | | | | | | semantick changes).
* | Improved zend_string API (Francois Laupretre)Dmitry Stogov2015-06-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed commit of the following: commit d96eab8d79b75ac83d49d49ae4665f948d15a804 Author: Francois Laupretre <francois@tekwire.net> Date: Fri Jun 26 01:23:31 2015 +0200 Use the new 'ZSTR' macros in the rest of the code. Does not change anything to the generated code (thanks to compat macros) but cleaner. commit b3526439104ac7a89a8e0c79dbebf33b22bd01b8 Author: Francois Laupretre <francois@tekwire.net> Date: Thu Jun 25 13:45:06 2015 +0200 Improve zend_string API Add missing methods
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | trailing whitespace removalStanislav Malyshev2015-01-101-13/+13
| |
* | Drop duplicate arg from hash_get_current_key_exNikita Popov2014-12-261-2/+2
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-100/+100
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | fix conditionsAnatol Belski2014-09-141-2/+2
| | | | | | | | substraction from an unsigned
* | master renamings phase 5Anatol Belski2014-08-251-3/+3
| |
* | master renames phase 3Anatol Belski2014-08-251-1/+1
| |
* | master renames phase 1Anatol Belski2014-08-251-25/+25
| |
* | yet trivial fixes to mysql extsAnatol Belski2014-08-211-1/+1
| |
* | ported mysql and mysqlndAnatol Belski2014-08-191-20/+20
| |
* | basic macro replacements, all at onceAnatol Belski2014-08-191-10/+10
| |
* | Merge branch 'master' into phpngDmitry Stogov2014-08-041-1/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (46 commits) PHP_INT_MIN and _MAX tests NEWS and UPGRADING Added PHP_INT_MIN Fix wrong lenght size Bug #51096 - Remove unnecessary ? for first/last day of Moved streams related functions to xp_ssl.c Remove duplicate NEWS Update NEWS Update NEWS Update NEWS BFN BFN Fixed bug #67715 (php-milter does not build and crashes randomly). We need to turn off any strict mode here for this warning to show up Disable restrictions regarding arrays in constants at run-time. For the discussion around it, see the thread on the mailing list: http://www.mail-archive.com/internals@lists.php.net/msg68245.html Revert "Fix bug #67064 in a BC safe way" Updated NEWS for #67693 Updated NEWS for #67693 Fixed bug #67693 - incorrect push to the empty array add missing entry to NEWS ... Conflicts: Zend/tests/errmsg_040.phpt Zend/tests/ns_059.phpt Zend/zend_language_parser.y Zend/zend_vm_def.h ext/openssl/openssl.c ext/reflection/php_reflection.c ext/session/session.c ext/spl/spl_directory.c ext/spl/spl_iterators.c ext/sqlite3/sqlite3.c ext/standard/array.c
| * Merge branch 'PHP-5.5' into PHP-5.6Andrey Hristov2014-07-311-1/+1
| |\
| | * Fix wrong lenght sizeAndrey Hristov2014-07-311-1/+1
| | |
* | | Save some strlenXinchen Hui2014-06-261-1/+1
| | |
* | | Don't use zend_string for other fields (only name here is enough)Xinchen Hui2014-06-251-8/+77
| | |
* | | Cleanup (refactoring is finish)Xinchen Hui2014-06-231-2/+0
| | |
* | | We don't need extra 1 byte anymoreXinchen Hui2014-06-231-9/+2
| | |
* | | Respect the origin behavior (fix one test: ext/pdo_mysql/tests/bug_33689.phpt)Xinchen Hui2014-06-231-3/+1
| | |
* | | Use zend_string in mysqlndXinchen Hui2014-06-231-73/+8
| | |
* | | unused variablesXinchen Hui2014-06-191-2/+0
| | |
* | | Fixed memory leak while doing fetchXinchen Hui2014-06-181-46/+3
| | |
* | | copy_data seems useless nowXinchen Hui2014-06-181-1/+6
| | |
* | | Fixed segfault of stream handlingXinchen Hui2014-06-181-0/+6
| | |
* | | Refactoring mysqlnd (incompleted, only mysqlnd ext compilable)Xinchen Hui2014-06-181-48/+42
| | |
* | | First set of phpng changes for mysqlndAndrey Hristov2014-05-201-2/+41
|/ /
* | New result fetching mode for mysqlnd, which should use less memory butAndrey Hristov2014-04-101-9/+39
|/ | | | | | | | 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]
* Fix indentationAndrey Hristov2014-03-101-2/+3
|
* Merge branch 'PHP-5.4' into PHP-5.5Andrey Hristov2014-01-281-1/+2
|\
| * add text for the new constantsAndrey Hristov2014-01-281-1/+2
| |
| * Bump yearXinchen Hui2014-01-031-1/+1
| |
* | Bump yearXinchen Hui2014-01-031-1/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Andrey Hristov2013-11-261-0/+2
|\ \ | |/ | | | | | | | | Conflicts: NEWS ext/mysqlnd/mysqlnd.c
| * Fix for Bug #66141 (mysqlnd quote function is wrong with ↵Andrey Hristov2013-11-261-0/+2
| | | | | | | | NO_BACKSLASH_ESCAPES after failed query)
* | Add support for connect attributes, as of MySQL 5.6Andrey Hristov2013-01-151-1/+65
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-01-061-1/+1
|\ \ | |/
| * Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-01-061-1/+1
| |\
| | * bump yearXinchen Hui2013-01-061-1/+1
| | |
* | | Merge branch 'PHP-5.4'Andrey Hristov2012-10-311-1/+1
|\ \ \ | |/ /
| * | Merge branch 'PHP-5.3' into PHP-5.4Andrey Hristov2012-10-311-1/+1
| |\ \ | | |/