summaryrefslogtreecommitdiff
path: root/ext/mysqli
Commit message (Collapse)AuthorAgeFilesLines
* Happy New Year~Xinchen Hui2013-01-0115-15/+15
|
* dos2unix & skip on connect failXinchen Hui2012-12-171-33/+34
|
* Need connect.inc hereRasmus Lerdorf2012-12-131-0/+1
|
* Fix broken testRasmus Lerdorf2012-12-131-1/+1
| | | | | Need to use the configured connection parameters here. We can't assume the test user has access.
* Fixed bug #63398 (Segfault when polling closed link)Xinchen Hui2012-11-302-2/+42
|
* Cover have_ssl=NO and have_ssl=DISABLEDULF WENDEL2012-09-292-4/+4
|
* Minor changes for MySQL 5.6ULF WENDEL2012-09-293-3/+9
|
* Remove executable permission on incXinchen Hui2012-10-101-0/+0
|
* Remove executable permission on phptXinchen Hui2012-10-104-0/+0
|
* Correct PHP versionXinchen Hui2012-09-051-1/+1
|
* Fixed bug #62885 (mysqli_poll - Segmentation fault)Xinchen Hui2012-08-222-0/+31
|
* Fix for bug#62046andrey2012-05-161-0/+40
| | | | | | | | | | | | Bug#62046 mysqli@mysqlnd can't iterate over stored sets after call to mysqli_stmt_reset(). Stmt's state was changed to STMT_PREPARED and leads the driver to think that the stmt was just prepared. Because result set exist also for only prepared but not executed sets, the check for stmt->result isn't any good. There is a result set, because as response for COM_PREPARE the server sends metadata and metadata is part of a result set. After COM_EXECUTE the server sends metadata again, which could be different and in this case more correct.
* Test for MySQL version.Variable is deprecated in MySQL 5.6.Ulf Wendel2012-03-141-22/+24
|
* Use correct property ctor, should fix threading issue in bug #55334Johannes Schlüter2012-03-081-1/+1
| | | | | # The code was refactored in 5_4/trunk, no need to merge
* Fix bug #61003 mysql_stat() require a valid connectionJohannes Schlüter2012-03-061-0/+4
|
* - Year++Felipe Pena2012-01-0115-15/+15
|
* fix for 5.5.19Andrey Hristov2011-12-141-1/+1
|
* another fixAndrey Hristov2011-12-141-1/+1
|
* fix testAndrey Hristov2011-12-141-1/+1
|
* fix testAndrey Hristov2011-12-141-1/+1
|
* fix typoAndrey Hristov2011-12-141-1/+1
|
* fix testAndrey Hristov2011-12-141-2/+2
|
* Good to fix something, but don't forget to update testsUlf Wendel2011-11-231-0/+4
|
* Good to fix something, but don't forget to update testsUlf Wendel2011-11-232-39/+52
|
* Always good to fix something, but don't forget to update testsUlf Wendel2011-11-231-0/+9
|
* Fix testUlf Wendel2011-11-231-5/+10
|
* 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.
* - Add missing include.Johannes Schlüter2011-11-141-1/+1
|
* Improving test to reflect latest API changesUlf Wendel2011-11-031-43/+80
|
* null the value before usageAndrey Hristov2011-10-081-4/+3
|
* Add test caseAndrey Hristov2011-10-061-0/+20
|
* Be consistent, add mysqli::stat property, as equivalent of mysqli_stat().Andrey Hristov2011-10-061-0/+33
| | | | | Fix for Bug #55859 mysqli->stat property access gives error
* Fix Bug #55703(PHP crash when calling mysqli_fetch_fields) Xinchen Hui2011-09-171-1/+6
| | | | | Since the catalog values always is "def" now, see http://dev.mysql.com/doc/refman/5.0/en/c-api-data-structures.html
* 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-8/+18
|
* Fix problems with the unbuffered set detection, for libmysql, which resultedAndrey Hristov2011-09-061-2/+2
| | | | | 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
|
* 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-054-1/+44
| | | | mysqlnd is used
* 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-118/+81
| | | | InnoDB check...