summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_commands.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
| | | | Closes GH-4732.
* Fix pointer signedness warning in mysqlndNikita Popov2019-04-111-1/+2
|
* Update and fix remaining year ranges (2019)Peter Kokot2019-02-081-1/+1
| | | | | | This patch follows previous license year ranges updates. With new approach source code files now have simplified headers with license information without year ranges.
* Remove local variablesPeter Kokot2019-02-031-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* Simplify the command factoryAndrey Hristov2019-01-071-803/+127
| | | | | | | | Since more than an year it not possible to create commands in the heap but they are allocated on the stack and directly run. In this regard, it doesn't make sense to have all the vararg stuff. Commands made sense to be created and pushed onto a stack then a general executor will run thru the stack and execute/handle the commands.
* Mark const what should not be changedAndrey Hristov2019-01-071-72/+72
|
* year++Xinchen Hui2018-01-021-1/+1
|
* Run mysqlmd commands in one step (without separate create/run/free).Dmitry Stogov2017-11-141-339/+270
|
* Use stack-allocated packets.Dmitry Stogov2017-11-141-48/+38
|
* Made "result", "statement" and "last_message" to always use Zend MM heap. ↵Dmitry Stogov2017-11-021-8/+8
| | | | (even for persistent connections these entities don't relive request boundary)
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* Fix more emailsAndrey Hristov2016-03-161-2/+2
|
* Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
|
* MNDR:Andrey Hristov2015-11-121-0/+2
| | | | - move things out of mysqlnd_priv.h
* MNDR:Andrey Hristov2015-11-121-3/+0
| | | | - remove inclusion of uneeded headers
* MNDR:Andrey Hristov2015-11-121-0/+1471
- move the command factory to own file - mysqlnd_commands.c