summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql/tests/mysql_pdo_test.inc
Commit message (Collapse)AuthorAgeFilesLines
* Reindent phpt filesNikita Popov2020-02-031-168/+168
|
* Make MySQLPDOTest::extractVersion() more liberalChristoph M. Becker2019-04-281-1/+1
| | | | | | | | | | | MySQL/MariaDB version strings may have suffixes which may contain dots; for instance, Debian stretch has 5.5.5-10.1.37-MariaDB-0+deb9u1 or such. Therefore, we make the version extraction more liberal, and only require that there are at least three parts separated by dot, and ignore additional parts. We also fix an erroneous test expectation, which would be triggered on CI now, right away. This patch has been provided by petk@.
* Trim trailing whitespace in source code filesPeter Kokot2018-10-131-1/+1
|
* Fix message typos in PDO testsAdam Baratz2016-08-241-1/+1
|
* Fixed mysql tests parsing phpinfo()Anatol Belski2013-07-021-3/+3
|
* Hopefully, this is an even better way to check for InnoDB support as of ↵Ulf Wendel2011-09-021-2/+9
| | | | MySQL 5.6.1
* Fix mysqlnd detectionUlf Wendel2011-07-261-0/+1
|
* Added test case for #47802 and fixed macro name after the move to ↵Kalle Sommer Nielsen2011-01-071-2/+2
| | | | mysql_options()
* Test update for sql_mode = ANSIUlf Wendel2010-09-221-2/+2
|
* Adding CLEAN sections and making tests portable between PHP 5 and PHP 6 by ↵Ulf Wendel2009-11-041-1/+8
| | | | replacing string(n) with %unicode|string%(n) and similar.
* fix mysqlnd detectionJohannes Schlüter2008-10-191-1/+1
|
* - Add mysqlnd support for PDO_mysql, fixes at least bug#41997,#42499,Johannes Schlüter2008-07-211-0/+162
pecl#12794, pecl#12401 # Running the tests: # (Note: Doesn't work currnetly on HEAD, see: # http://news.php.net/php.qa/64378) # # PDO_MYSQL_TEST_DSN - DSN # For example: mysql:dbname=test;host=localhost;port=3306 # # PDO_MYSQL_TEST_HOST - database host # PDO_MYSQL_TEST_DB - database (schema) name # PDO_MYSQL_TEST_SOCKET - database server socket # PDO_MYSQL_TEST_ENGINE - storage engine to use # PDO_MYSQL_TEST_USER - database user # PDO_MYSQL_TEST_PASS - database user password # PDO_MYSQL_TEST_CHARSET - database charset # # NOTE: if any of PDO_MYSQL_TEST_[HOST|DB|SOCKET|ENGINE|CHARSET] is # part of PDO_MYSQL_TEST_DSN, the values must match. That is, for example, # for PDO_MYSQL_TEST_DSN = mysql:dbname=test you MUST set PDO_MYSQL_TEST_DB=test.