summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql
Commit message (Collapse)AuthorAgeFilesLines
* Trim trailing whitespaces in build filesPeter Kokot2018-07-291-4/+4
| | | | | | | | Some editors utilizing .editorconfig automatically trim whitespaces. For convenience this patch removes whitespaces in certain build files: - ext/*/config*.m4 - configure.ac - acinclude.m4
* Remove unused Git attributes identPeter Kokot2018-07-257-12/+0
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* Use zval_ptr_dtor() imstead of zval_dtor()Dmitry Stogov2018-07-051-1/+1
|
* Use zend_string_release_ex() instread of zend_string_release() in places, ↵Dmitry Stogov2018-05-281-13/+13
| | | | where we sure about string persistence.
* Use EXPECT instead of EXPECTF when possibleGabriel Caruso2018-02-2059-59/+59
| | | | EXPECTF logic in run-tests.php is considerable, so let's avoid it.
* Remove trailing whitespace in inc filesGabriel Caruso2018-02-101-1/+1
|
* Fix some misspellingsGabriel Caruso2018-02-061-3/+2
|
* Use bool instead of boolean while throwing a type errorGabriel Caruso2018-02-044-4/+4
| | | | | | | | | | PHP requires boolean typehints to be written "bool" and disallows "boolean" as an alias. This changes the error messages to match the actual type name and avoids confusing messages like "must be of type boolean, boolean given". This a followup to ce1d69a1f6dcf15d43029301059c25e5bc09a577, which implements the same change for integer->int.
* Use int instead of integer in type errorsGabriel Caruso2018-02-041-1/+1
| | | | | | | PHP requires integer typehints to be written "int" and does not allow "integer" as an alias. This changes type error messages to match the actual type name and avoids confusing messages like "must be of the type integer, integer given".
* Add and fix SKIPIF sectionsGabriel Caruso2018-02-041-0/+2
|
* Remove checks for unicode.semantics ini optionNikita Popov2018-02-031-8/+3
|
* Use OBJ_FLAGS() macro to access object flags (even if they are currently ↵Dmitry Stogov2018-01-221-1/+1
| | | | stored together with GC_FLAGS)
* year++Xinchen Hui2018-01-025-5/+5
|
* Merge branch 'PHP-7.2'Nikita Popov2017-12-171-1/+1
|\
| * Fix bug #75615Jaromír Doleček2017-12-171-1/+1
| | | | | | | | Remove -I without argument in pdo_mysql config.m4.
* | Move constants into read-only data segmentDmitry Stogov2017-12-151-1/+1
| |
* | Turn "pdo_stmt_methods" into constants.Dmitry Stogov2017-12-142-2/+2
| |
* | Move constants into read-only data segmentDmitry Stogov2017-12-143-4/+4
| |
* | Merge branch 'PHP-7.2'Anatol Belski2017-09-131-0/+33
|\ \ | |/ | | | | | | * PHP-7.2: Fixed bug #75018, fixed bug #75177
| * Merge branch 'PHP-7.1' into PHP-7.2Anatol Belski2017-09-131-0/+33
| |\ | | | | | | | | | | | | * PHP-7.1: Fixed bug #75018, fixed bug #75177
| | * Fixed bug #75018, fixed bug #75177Anatol Belski2017-09-131-0/+33
| | | | | | | | | | | | Both are caused by the same cast issue in mysqlnd on 32-bit.
| * | Req #74963 (Improved error message on fetching property of non-object)Xinchen Hui2017-07-311-1/+1
| | |
* | | Get rid of all these old package[2].xml files, most of these had no had a ↵Kalle Sommer Nielsen2017-08-171-93/+0
| | | | | | | | | | | | | | | | | | release since PHP4, or any release at all in close to 10 years, some even did not have a package registered at pecl OCI, PDO_OCI and zip are left as they are actively developed and released there
* | | Req #74963 (Improved error message on fetching property of non-object)Xinchen Hui2017-07-311-1/+1
| | |
* | | Remove version checks for MySQL < 5.0Nikita Popov2017-07-191-34/+0
|/ /
* | Merge branch 'PHP-7.1' into PHP-7.2Nikita Popov2017-07-181-1/+1
|\ \ | |/
| * Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2017-07-181-1/+1
| |\
| | * Fix check of mysql_commit() return valueYaoGuai2017-07-181-1/+1
| | | | | | | | | | | | For mysql_commit() everything non-zero is an error.
* | | Merge branch 'PHP-7.1'Xinchen Hui2017-04-071-0/+27
|\ \ \ | |/ / | | | | | | | | | | | | | | | * PHP-7.1: Update NEWS Remove unused var Fix invalid free of persistent results on error/connection loss in mysqlnd (bug 74376)
| * | Merge branch 'PHP-7.0' into PHP-7.1Xinchen Hui2017-04-071-0/+27
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | * PHP-7.0: Fix invalid free of persistent results on error/connection loss in mysqlnd (bug 74376) Conflicts: ext/mysqlnd/mysqlnd_ps.c
| | * Fix invalid free of persistent results on error/connection loss in mysqlnd ↵Yussuf Khalil2017-04-051-0/+27
| | | | | | | | | | | | (bug 74376)
* | | Add PDO parameter types for national character set stringsAdam Baratz2017-03-204-4/+122
| | |
* | | Remove unused fieldAdam Baratz2017-03-201-1/+0
| | |
* | | Merge branch 'PHP-7.1'Nikita Popov2017-03-094-0/+19
|\ \ \ | |/ /
| * | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2017-03-094-0/+19
| |\ \ | | |/
| | * Fixed bug #71003: Add PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERTThomas Orozco2017-03-094-0/+19
| | |
| | * Update copyright headers to 2017Sammy Kaye Powers2017-01-045-5/+5
| | |
| * | Update copyright headers to 2017Sammy Kaye Powers2017-01-045-5/+5
| | |
* | | Update copyright headers to 2017Sammy Kaye Powers2017-01-025-5/+5
| | |
* | | Merge branch 'PHP-7.1'Matteo Beccati2016-12-152-1/+23
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-7.1: Skip tests when secure_file_priv dir not writable Add missing UPGRADING entry. Manual is updated before 7.0 release.
| * | Merge branch 'PHP-7.0' into PHP-7.1Matteo Beccati2016-12-152-1/+23
| |\ \ | | |/ | | | | | | | | | | | | * PHP-7.0: Skip tests when secure_file_priv dir not writable Add missing UPGRADING entry. Manual is updated before 7.0 release.
| | * Merge branch 'PHP-5.6' into PHP-7.0Matteo Beccati2016-12-152-1/+23
| | |\ | | | | | | | | | | | | | | | | * PHP-5.6: Skip tests when secure_file_priv dir not writable
| | | * Skip tests when secure_file_priv dir not writableMatteo Beccati2016-12-152-1/+23
| | | |
* | | | Remove more PHP 6 leftovers from testsNikita Popov2016-11-2430-366/+366
| | | |
* | | | Fix CRLF line-endings in testsNikita Popov2016-11-201-33/+33
| | | | | | | | | | | | | | | | Also fix a single instance of CRLF in ibase_query.c.
* | | | Remove the b prefix from literals on unrelated testsPedro Magalhães2016-11-202-4/+4
| | | |
* | | | Cleanup tests version checksTom Van Looy2016-11-205-12/+0
| | | |
* | | | Addendum to #73234: Assume param types are nullableAdam Baratz2016-10-122-2/+2
| | | |
* | | | Fix tests affected by 32b6154a61fae820386527f3019f8c5937fc5d27Adam Baratz2016-10-112-2/+2
| | | |
* | | | Fix message typos in PDO testsAdam Baratz2016-08-241-1/+1
|/ / /