summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_plugin.c
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers to 2017Sammy Kaye Powers2017-01-041-1/+1
|
* Remove typoXinchen Hui2016-03-171-1/+0
|
* Fix emails in headers. @mysql.com addresses are no more since many years.Andrey Hristov2016-03-161-4/+4
|
* 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
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | Use Zend MM to keep statistic of non-persistent connections ↵Dmitry Stogov2015-09-181-2/+2
| | | | | | | | (calloc/free->pecalloc/pefree)
* | Rename prefixed mysqlnd functions - prefixed with undescore, which wereAndrey Hristov2015-04-071-4/+3
| | | | | | | | | | | | | | | | | | accessible through a macro. Also removing the access macros. These prefixed functions were used, similarly to many functions in Zend2, because of TSRMLS - the macro was adding the the tsrm pointer to the call. However, as in Zend3 no TSRM pointers are passed down the stack, because of the usage of cached TSRM pointer in a real thread local variable, these macros and prefixed naming have lost their purpose.
* | Use new ZEND_HASH_FOREACH_... API.Dmitry Stogov2015-02-101-4/+0
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | trailing whitespace removalStanislav Malyshev2015-01-101-2/+2
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-17/+16
| |
* | bring back all the TSRMLS_FETCH() stuffAnatol Belski2014-10-151-0/+2
| | | | | | | | for better comparability with the mainstream
* | remove fetches from mysqlndkrakjoe2014-09-261-2/+0
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | Fixed plugin fetchingXinchen Hui2014-06-181-1/+1
| |
* | Refactoring mysqlnd (incompleted, only mysqlnd ext compilable)Xinchen Hui2014-06-181-12/+8
| |
* | Use better data structures (incomplete)Dmitry Stogov2014-02-101-4/+6
|/
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-01-061-1/+1
|\
| * bump yearXinchen Hui2013-01-061-1/+1
| |
* | compile out example plugin in a release buildandrey2012-09-261-2/+2
|/
* Fix #61704 (Crash apache, phpinfo() threading issue)Johannes Schlüter2012-05-081-1/+18
|
* Fix folding marksJohannes Schlüter2012-05-081-4/+4
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Move from directly referencing an aggregated structure to using aAndrey Hristov2011-10-251-2/+2
| | | | | | pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage
* shift code around to two new files - mysqlnd_driver.c Andrey Hristov2011-10-211-6/+0
| | | | | | and mysqlnd_ext_plugin.c (mysqlnd extension plugin)
* even better fixAndrey Hristov2011-02-251-3/+3
|
* fix plugin counting, this is trunk onlyAndrey Hristov2011-02-251-3/+2
|
* plug a leakAndrey Hristov2011-01-101-3/+2
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* extending the API interface - plugins can registerAndrey Hristov2010-12-281-0/+200
themselves with a structure and can be searched. Every plugin can have statistics and they are shown under the statistics of mysqlnd in MINFO.