summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Improve error messages for invalid property accessMáté Kocsis2020-05-181-1/+1
| | | | | | | | | | | | | | | Closes GH-5446 Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
* | | Merge branch 'PHP-7.4'Christoph M. Becker2020-05-151-0/+30
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Fix #79596: MySQL FLOAT truncates to int some locales
| * | Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2020-05-151-0/+30
| |\ \ | | |/ | | | | | | | | | * PHP-7.3: Fix #79596: MySQL FLOAT truncates to int some locales
| | * Fix #79596: MySQL FLOAT truncates to int some localesChristoph M. Becker2020-05-151-0/+30
| | | | | | | | | | | | | | | We must not do locale aware float to string conversion here; instead we using our `snprintf()` implementation with the `F` specifier.
* | | Change the default PDO error mode to exceptionsAllenJB2020-05-047-5/+31
| | | | | | | | | | | | According to <https://www.php.net/manual/en/pdo.error-handling.php>.
* | | Remove support for libmysqlclient 5.0Nikita Popov2020-04-232-6/+0
| | | | | | | | | | | | Closes GH-5391.
* | | Merge branch 'PHP-7.4'Nikita Popov2020-04-161-2/+2
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Fix MySQL local infile / attr handling on big endian systems
| * | Merge branch 'PHP-7.3' into PHP-7.4Nikita Popov2020-04-161-2/+2
| |\ \ | | |/ | | | | | | | | | * PHP-7.3: Fix MySQL local infile / attr handling on big endian systems
| | * Fix MySQL local infile / attr handling on big endian systemsguirish2020-04-161-2/+2
| | | | | | | | | | | | | | | | | | Make sure pointer types match what is used by libmysql everywhere. Closes GH-5380.
* | | Improve error messages of various extensionsMáté Kocsis2020-03-231-5/+5
| | | | | | | | | | | | Closes GH-5278
* | | Reindent phpt filesNikita Popov2020-02-03103-6274/+6274
| | |
* | | Merge branch 'PHP-7.4'Nikita Popov2020-02-031-19/+19
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Apply tidy formatting
| * | Apply tidy formattingNikita Popov2020-02-031-19/+19
| | | | | | | | | | | | Mostly reindent PHP scripts to spaces.
* | | Fix #78880 Another roundMáté Kocsis2020-01-191-1/+1
| | |
* | | Fix #78880: Final spelling fixesMáté Kocsis2020-01-161-2/+2
| | |
* | | Fix #78880: Another bunch of spelling errorsMáté Kocsis2020-01-162-4/+4
| | |
* | | Merge branch 'PHP-7.4'Christoph M. Becker2020-01-132-27/+1
|\ \ \ | | | | | | | | | | | | | | | | * PHP-7.4: Fix #79106: PDO may fetch wrong column indexes with PDO::FETCH_BOTH
| * \ \ Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2020-01-132-27/+1
| |\ \ \ | | |/ / | |/| | | | | | | | | | * PHP-7.3: Fix #79106: PDO may fetch wrong column indexes with PDO::FETCH_BOTH
| | * | Fix #79106: PDO may fetch wrong column indexes with PDO::FETCH_BOTHChristoph M. Becker2020-01-132-27/+1
| | |/ | | | | | | | | | | | | | | | Column names can be numeric strings, so we have to make sure to insert the column values with the appropriate numeric keys, instead of adding them.
* | | Merge branch 'PHP-7.4'Nikita Popov2019-12-271-1/+1
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | * PHP-7.4: Don't use PASSWORD() function in test Specify explicit row order in PDO MySQL test Skip bug77956.phpt if local_infile disabled on server Don't check TIMESTAMP NOT NULL in fetch_field_flags test Don't test the RENAME DATABASE query Make GeomFromText tests compatible with MySQL 8
| * | Specify explicit row order in PDO MySQL testNikita Popov2019-12-271-1/+1
| | |
* | | Fix #78880: Spelling error reportChristoph M. Becker2019-12-211-4/+4
| | | | | | | | | | | | | | | | | | | | | We fix the most often occuring typos according to a recent codespell report[1] in tests, code comments and documentation. [1] <https://fossies.org/linux/test/php-src-master-f8f48ce.191129.tar.gz/codespell.html>.
* | | Merge branch 'PHP-7.4'Nikita Popov2019-12-062-10/+1
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Fix intermittent error in pdo_mysql___construct_options.phpt
| * | Fix intermittent error in pdo_mysql___construct_options.phptNikita Popov2019-12-062-10/+1
| | | | | | | | | | | | For the love of god, don't write tests based on mt_rand!
* | | Add stubs for PDOMáté Kocsis2019-11-181-1/+1
| | |
* | | Clean DONE tags from testsFabien Villepinte2019-11-071-2/+0
| | | | | | | | | | | | | | | | | | | | | Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
* | | Merge branch 'PHP-7.4'Christoph M. Becker2019-11-041-2/+5
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Make test more robust
| * | Make test more robustChristoph M. Becker2019-11-041-2/+5
| | | | | | | | | | | | | | | | | | Time flies, so obviously the reported uptime may differ a bit (as already occasionally noticed on CI); we cater to that by allowing a delay of up to one second.
* | | Merge branch 'PHP-7.4'Christoph M. Becker2019-10-074-2/+8
|\ \ \ | |/ / | | | | | | | | | * PHP-7.4: Fix #78623: Regression caused by "SP call yields additional empty result set"
| * | Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2019-10-074-2/+8
| |\ \ | | |/ | | | | | | | | | * PHP-7.3: Fix #78623: Regression caused by "SP call yields additional empty result set"
| | * Merge branch 'PHP-7.2' into PHP-7.3Christoph M. Becker2019-10-074-2/+8
| | |\ | | | | | | | | | | | | | | | | * PHP-7.2: Fix #78623: Regression caused by "SP call yields additional empty result set"
| | | * Fix #78623: Regression caused by "SP call yields additional empty result set"Christoph M. Becker2019-10-074-2/+8
| | | | | | | | | | | | | | | | This reverts commit 41a4379cb45419a376043ca5f8c5a2bca82cea7c.
* | | | Convert some notices to warningsNikita Popov2019-10-021-1/+1
| | | | | | | | | | | | | | | | Part of https://wiki.php.net/rfc/engine_warnings.
* | | | Merge branch 'PHP-7.4'Nikita Popov2019-09-3010-20/+20
|\ \ \ \ | |/ / /
| * | | Fix borked SKIPIFsFabien Villepinte2019-09-3010-20/+20
| | | |
* | | | Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-255-10/+0
| | | | | | | | | | | | | | | | Closes GH-4732.
* | | | Merge branch 'PHP-7.4'Nikita Popov2019-09-091-2/+2
|\ \ \ \ | |/ / /
| * | | Fix double free of DSN credentialsNikita Popov2019-09-091-2/+2
| | | |
* | | | Merge branch 'PHP-7.4'Christoph M. Becker2019-09-034-8/+2
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-7.4: Fix #41997: SP call yields additional empty result set
| * | | Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2019-09-034-8/+2
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-7.3: Fix #41997: SP call yields additional empty result set
| | * | Merge branch 'PHP-7.2' into PHP-7.3Christoph M. Becker2019-09-034-8/+2
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-7.2: Fix #41997: SP call yields additional empty result set
| | | * Fix #41997: SP call yields additional empty result setChristoph M. Becker2019-09-034-8/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When stored procedures are called, the "final result set is a status result that includes no result set". Calling `::nextRowset()` on the actual last result set should return FALSE, since there is actually no further result set to be processed.
* | | | Merge branch 'PHP-7.4'Christoph M. Becker2019-08-201-0/+58
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-7.4: fix the problem for connect_attr, set db condition, and add a new attribute _server_host
| * | | Merge branch 'PHP-7.3' into PHP-7.4Christoph M. Becker2019-08-201-0/+58
| |\ \ \ | | |/ / | | | | | | | | | | | | * PHP-7.3: fix the problem for connect_attr, set db condition, and add a new attribute _server_host
| | * | Merge branch 'PHP-7.2' into PHP-7.3Christoph M. Becker2019-08-201-0/+58
| | |\ \ | | | |/ | | | | | | | | | | | | * PHP-7.2: fix the problem for connect_attr, set db condition, and add a new attribute _server_host
| | | * fix the problem for connect_attr, set db condition, and add a new attribute ↵Qianqian Bu2019-08-201-0/+58
| | | | | | | | | | | | | | | | _server_host
* | | | Merge branch 'PHP-7.4'Nikita Popov2019-07-231-2/+2
|\ \ \ \ | |/ / /
| * | | Cleanup of remaining E_STRICT in testsGeorge Peter Banyard2019-07-231-6/+2
| | | |
* | | | Merge branch 'PHP-7.4'Peter Kokot2019-07-141-8/+7
|\ \ \ \ | |/ / / | | | | | | | | | | | | * PHP-7.4: Remove PHP_MYSQL variable
| * | | Remove PHP_MYSQL variablePeter Kokot2019-07-141-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | PHP_MYSQL variable was once defined by the ext/mysql (--with-mysql). Closes GH-4399