| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
* PHP-5.4:
Fixed MarinaDB support
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
The minimum length is given in bytes, so it is charset dependent.
For utf8 charsets for example it's 3 rather than 1.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Per https://wiki.php.net/rfc/mysql_deprecation, connecting to a MySQL database
via ext/mysql now generates an E_DEPRECATED error. This commit includes the
minimal EXPECTF updates required for the test suite to pass: it may be
preferable to refactor some of the tests to suppress deprecation errors in
situations where no other error is expected from mysql_[p]connect(), but I'm
not enough of a MySQL expert to want to get my hands that dirty in a long
standing test suite.
|
| | |
|
|\ \
| |/
| |
| |
| |
| |
| | |
* PHP-5.4:
- BFN
Minor changes for MySQL 5.6
NEWS for 76601c4
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* PHP-5.3:
Minor changes for MySQL 5.6
NEWS for 76601c4
Conflicts:
NEWS
|
| | | |
|
|\ \ \
| |/ / |
|
| |\ \
| | |/ |
|
| | | |
|
|\ \ \
| |/ / |
|
| |\ \
| | |/ |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Moved the ini_set() entries into a separate script 'setupdefault.inc'
- Let mysql_affected_rows and mysql_insert_id test cases use the newly created script
With the ini_set() statements inside connect.inc, some test cases would be forced to 'undo' them in order to test other scenarios.
Tested on all three dev lines with and without passing db credentials. No changes detected.
|
| | | |
|
| | |
| | |
| | |
| | | |
open_basedir setting is too restrictive during test run for whatever reason.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Replaced skipifdefaultconnectionfailure.inc by three additional ini_set() statements in connect.inc for the default connection settings
Patch also includes a typo in connect.inc concerning mysql.default_socket
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
look. I tried MySQL 5.1, 5.5 and 5.6.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Fixed test script failed when host mysql doesn't listen on 3306
Fxied test script failed due to mysql_pconnect trigger a warning
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
The fix is for now in 5_4 and trunk, to be merged into 5_3 after 5.3.8
is packaged (expected today). The test case goes to all branches
|
| | |
| | |
| | |
| | | |
between 5.3 and trunk: suppress warnings by default, check warnings in a dedicated test
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Bug #53503 mysqli::query returns false after successful LOAD DATA query
which fixes als #56349, same behavior but in ext/mysql. Both due to a bug
in mysqlnd. Never was a problem with libmysql.
Also fixed the 53503's test case as it always reported PASS, even when there
should have been a failure.
|
| | | |
|
| | |
| | |
| | |
| | | |
with mysql<something>
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
as it is in when compiled from source and the default for mysqlnd.
SuSE for example uses /var/run/mysql/mysql.sock . Also, sql.safe_mode
(ext/mysql and ingres) needs the socket.
Fix possible crashes in mysqlnd. When packets are shorter, functions should
return error.
|
|\ \ \
| |/ / |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
warnings in certain environments. This doesn't
affect what is being tested.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Moved the ini_set() entries into a separate script 'setupdefault.inc'
- Let mysql_affected_rows and mysql_insert_id test cases use the newly created script
With the ini_set() statements inside connect.inc, some test cases would be forced to 'undo' them in order to test other scenarios.
Tested on all three dev lines with and without passing db credentials. No changes detected.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
open_basedir setting is too restrictive during test run for whatever reason.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Replaced skipifdefaultconnectionfailure.inc by three additional ini_set() statements in connect.inc for the default connection settings
Patch also includes a typo in connect.inc concerning mysql.default_socket
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
look. I tried MySQL 5.1, 5.5 and 5.6.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
of data type"
Fixed test failed due to mysql_pconnect throw warning
Fixed test failed when host mysql server doesn't listen on 3306
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
The fix is for now in 5_4 and trunk, to be merged into 5_3 after 5.3.8
is packaged (expected today). The test case goes to all branches
|