summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests
Commit message (Collapse)AuthorAgeFilesLines
* Fix testUlf Wendel2011-11-231-6/+9
|
* Message can vary depending on server versionUlf Wendel2011-11-232-4/+4
|
* Skipping with libmysql. If a documentation points to more or less ↵Ulf Wendel2011-11-223-0/+9
| | | | unmaintained wiki contents, I take it as a request to stop testing a feature. Can't tell if I get false positive, hit a bug or not. This is not libmysql testing. Its PHP MySQL API testing.
* Improving test to reflect latest API changesUlf Wendel2011-11-031-50/+73
|
* last stat fixAndrey Hristov2011-10-101-0/+2
|
* fix test after stat changeAndrey Hristov2011-10-101-0/+2
|
* fix another test after stat changeAndrey Hristov2011-10-101-0/+4
|
* fix testAndrey Hristov2011-10-101-0/+9
|
* fix testAndrey Hristov2011-10-101-0/+4
|
* fix testAndrey Hristov2011-10-101-0/+8
|
* Add test caseAndrey Hristov2011-10-061-0/+20
|
* This should please gcov.php.net which hits error 1044 instead of 1049.Ulf Wendel2011-09-121-2/+10
|
* Fix typo.Ulf Wendel2011-09-121-1/+1
|
* Minor issue. Seems to fail the same way on various PHP + MySQL combinations. ↵Ulf Wendel2011-09-121-3/+4
| | | | Setting XFAIL until we fix it.
* Hits libmysql/MySQL bug, works with mysqlndUlf Wendel2011-09-121-0/+3
|
* Those will fail with MySQL 5.5. Running them because they have unveiled a ↵Ulf Wendel2011-09-122-0/+4
| | | | crash, which has been fixed already. Setting to XFAIL, need to be decide if and/or how the functionality shall be supported.
* Bug #55653Ulf Wendel2011-09-091-0/+36
|
* Fix skipifs to match other tests for the case when connection failsChristopher Jones2011-09-084-6/+16
|
* Fix problems with the unbuffered set detection, for libmysql, which resultedAndrey Hristov2011-09-061-1/+0
| | | | | in always true. Thanks Stas.
* More parenthesis, credits to Nikita PopovUlf Wendel2011-09-061-1/+1
|
* BORK hunting - Fixing SKIPIFUlf Wendel2011-09-061-1/+1
|
* Fix SKIPIFUlf Wendel2011-09-062-5/+8
|
* Prevent NoticeUlf Wendel2011-09-061-1/+1
|
* this tests looks mysqlnd onlyStanislav Malyshev2011-09-061-1/+2
|
* No more test failure for libmysql, http://news.php.net/php.internals/55210Ulf Wendel2011-09-051-1/+11
|
* Fix for Bug #55582 mysqli_num_rows() returns always 0 for unbuffered, when ↵Andrey Hristov2011-09-051-0/+41
| | | | mysqlnd is used
* test fixesStanislav Malyshev2011-09-041-1/+1
|
* Hopefully, this is an even better way to check for InnoDB support as of ↵Ulf Wendel2011-09-021-1/+6
| | | | MySQL 5.6.1
* As of MySQL 5.6.1 the server variable have_innodb is no more. Updating ↵Ulf Wendel2011-09-0210-117/+64
| | | | InnoDB check...
* MySQL 5.6 updateUlf Wendel2011-09-022-2/+3
|
* Make test work with database other than "test".Daniel Convissor2011-09-011-2/+1
|
* Check for LOAD DATA support during SKIPIFUlf Wendel2011-09-011-6/+19
|
* Fix test. First element within the parantheses is a SQL status code. Should ↵Ulf Wendel2011-09-011-1/+1
| | | | please gcov
* Fixing tests debug outputUlf Wendel2011-09-011-7/+10
|
* Check if MySQL server supports SSL and, if using mysqlnd, check if PHP ↵Ulf Wendel2011-09-012-6/+55
| | | | streams will support SSL
* Simplify mysqlnd debug trace marginally for debuggingUlf Wendel2011-09-012-2/+10
|
* Hack around http://bugs.mysql.com/62320Ulf Wendel2011-09-011-1/+1
|
* Please, whenever changing the mysqli API update the tests. Don't wait for me ↵Ulf Wendel2011-08-311-0/+3
| | | | to catch up.
* New utility function to check for '[1148] The used command is not allowed ↵Ulf Wendel2011-08-3120-181/+125
| | | | with this MySQL version' during SKIPIF
* Check if server supports LOAD DATA LOCAL INFILE to catch [1148] The used ↵Ulf Wendel2011-08-312-0/+40
| | | | command is not allowed with this MySQL version during SKIPIF
* Let's do more than hope (as per the comment in the test code) that we Rasmus Lerdorf2011-08-291-1/+3
| | | | | | don't hit the memory limit, let's disable the limit for this test since the limit is getting hit by many people
* The link error on an out-of-sync command doesn't start with 0Rasmus Lerdorf2011-08-291-1/+1
| | | | | uwe/andrey please double-check
* MySQL 5.6 fractional seconds and PSUlf Wendel2011-08-122-0/+5
|
* Andrey, please have a look. Not sure if the test is correct, e.g. MySQL ↵Ulf Wendel2011-08-121-0/+125
| | | | 5.5.3+ really needed?
* Andrey, please have a look. This should not cause errors.Ulf Wendel2011-08-121-0/+75
|
* Fix for bug #55283 SSL options set by mysqli_ssl_set ignored for MySQLi ↵Andrey Hristov2011-08-051-0/+55
| | | | persistent connections
* Add mysqli_error_list() that returns an array with errors. Typically onlyAndrey Hristov2011-08-0411-4/+55
| | | | | | | | one and just one for libmysql. mysqlnd can return generate more than one error during its work and with mysqli_error() only the last error is being reported. In the array returned by mysqli_error_list() / $mysqli->error_list, all errors will be found. The list is reset when the next command is executed
* Double check if line is sill usable and connected to last successfully ↵Ulf Wendel2011-07-261-5/+17
| | | | selected db.
* Check what happens if switching DB via API fails. Expected: no change of ↵Ulf Wendel2011-07-261-2/+20
| | | | current DB/schema.
* Test update. 5.4+ is more verbose.Ulf Wendel2011-07-251-1/+15
|