summaryrefslogtreecommitdiff
path: root/ext/mysqli
Commit message (Collapse)AuthorAgeFilesLines
* Bug fixed in 5.0.46Andrey Hristov2008-03-081-2/+2
|
* Fix a problem with $mysqi->connect() not working with default values.Andrey Hristov2008-03-086-20/+48
| | | | | Fix a leak, bug#39457
* Fix test. Now passes.Andrey Hristov2008-02-201-13/+13
|
* Fix a failing testAndrey Hristov2008-02-191-1/+1
|
* Fix testAndrey Hristov2008-02-191-0/+12
|
* Fixed a possible crashIlia Alshanetsky2008-02-181-1/+3
|
* Fix windows build - VC doesn't like nested macrosAndrey Hristov2008-02-121-5/+4
|
* MFH: - Fix build with TSRM and mysqlndJohannes Schlüter2008-02-121-0/+2
|
* MFHAntony Dovgal2008-02-121-1/+0
|
* Fix typoAndrey Hristov2008-02-121-1/+1
|
* cvs syncAndrey Hristov2008-02-111-0/+19
|
* MFH: Fix a compatibility bug and a failing testAndrey Hristov2008-02-061-3/+63
|
* MFH: Fix testAndrey Hristov2008-02-061-9/+5
|
* Pconnect working with mysqli_real_connect(). To less failing tests.Andrey Hristov2008-02-066-130/+112
|
* Fix a leak, memory warning and failing test case.Andrey Hristov2008-02-041-1/+3
|
* Improved PHP binary size and startup speed with GCC4 visibility control (Nuno)Dmitry Stogov2008-01-301-1/+5
|
* some config.w32 fixesAndrey Hristov2008-01-281-4/+4
| | | | | | moved mysqlnd's block allocator to a separate file and also now it's part of the connection, no MT problems.
* More optimizations - less MM callsAndrey Hristov2008-01-286-19/+49
| | | | | | | | | | Clearly separated fetching (physical reading) from decoding phases (data interpretation). Threaded fetching added but disabled as needs more work for Windows. For Linux needs some touches to add pthreads if this is enabled, probably with a compile-time switch. The code reorganisation makes it easy to add also async API, similar to cURL's one.
* MySQL 6 compatibility fix.Ulf Wendel2008-01-081-0/+4
|
* Merge from HEAD: looks more than it is. Whitespace, some SQL formatting ↵Ulf Wendel2008-01-0838-136/+183
| | | | | | | changes etc. No "real" changes.
* MFHUlf Wendel2008-01-045-3/+589
| | | | | | | | | | | | | | | | | | | | | | | | | Added: mysqli_fetch_assoc_zerofill.phpt checks for UNSIGNED ZEROFILL mysqli_stmt_bind_result_zerofill.phpt checks for UNSIGNED ZEROFILL mysqli_stmt_bind_param_call_user_func.phpt Needs to be refined once http://bugs.php.net/bug.php?id=43568 has been closed and a decision has been made on call_user_func_array(). There seems to be a BC break between 5_2 -> 5_3 . Johannes has an eye on it Modified: mysqli_change_user_insert_id.phpt skip test for buggy MySQL Server versions mysqli_insert_id.phpt added additional checks
* MFH: Fix for bug #43036Ulf Wendel2008-01-041-16/+16
|
* MFH: Remove test for deprecated (and removed) functionUlf Wendel2008-01-031-50/+0
|
* - MFH: Remove more replication stuffJohannes Schlüter2008-01-032-53/+0
|
* fixed binary arithmetic (MF5.2)Hartmut Holzgraefe2008-01-011-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-3114-14/+14
|
* Remove RPL functions. They were always experimental and lead to crashes.Andrey Hristov2007-12-2812-511/+2
| | | | | | The underlying functions will be removed from libmysql as of MySQL 6.0, so it's right time to remove them.
* Fixing SQL syntax in this very old test to make it pass with MySQL 6.0Ulf Wendel2007-12-281-4/+17
|
* Isn't it nice to get a new 64bit box? Fixing 32bit/64bit issue.Ulf Wendel2007-12-281-8/+21
|
* Sooner or later these old 0*.phpt tests had to bite us - fixing SQL syntax,Ulf Wendel2007-12-281-18/+40
| | | | | HEAD sync will follow.
* Cutting off a few edges:Ulf Wendel2007-12-281-21/+35
| | | | | | | - use connection parameter from environment variables - check if MySQL supports procedures - whitespace
* MFH: Fix for bug #42548 "PROCEDURE xxx can't return a result set"Hartmut Holzgraefe2007-12-252-0/+53
|
* Fix buildAndrey Hristov2007-11-091-1/+1
|
* Fix crash with pconnectAndrey Hristov2007-11-094-85/+36
|
* MFH: partial MFH before?Jani Taskinen2007-11-061-3/+5
|
* - Fix bug headersJani Taskinen2007-10-302-4/+4
|
* MFH:- Fixed invalid handling of float value passed to an integer field on ↵Jani Taskinen2007-10-291-1/+6
| | | | 64bit machine
* MFH: fix testJani Taskinen2007-10-291-1/+1
|
* ..and correct macroAntony Dovgal2007-10-171-1/+1
|
* MFH: use correct dtro and variable for the callbackAntony Dovgal2007-10-172-4/+3
|
* Sync mysqlnd. Should still compile with 5_2 for those who want to use theAndrey Hristov2007-10-161-0/+8
| | | | | | current stable branch. mysqli from 5_3 patched for mysqlnd should be also compilable with 5_2.
* avoid double free and use zval_dtor() where neccessaryAntony Dovgal2007-10-162-3/+1
|
* Fix bug due to shadowing of variables. This one is pretty-pretty rare,Andrey Hristov2007-10-161-2/+2
| | | | | caught by source code inspection.
* Same as for HEAD: make it skip and not fail if it can't connect to DBUlf Wendel2007-10-121-0/+1
|
* Same as for HEAD: Trying to skip tests if they can't connect to theUlf Wendel2007-10-1212-3/+14
| | | | | | DB server. Note the environment variable MYSQL_TEST_SKIP_CONNECT_FAILURE to control if you want tests that can't connect to fail or to be skipped.
* Fixing the test. Might the PHP 5.2 run-tests.php have fooled me? I could swear,Ulf Wendel2007-10-101-0/+2
| | | | | I saw this test passing with 5.2 before...
* Version specific EXPECF sections would be wonderful (bug31668.phpt).Ulf Wendel2007-10-102-5/+9
| | | | | | | And sometimes it helps to read the commit messages to keep tests up to date: we removed mysqli_set_local_infile_handler() from mysqlnd (061.phpt) some time ago.
* Last bunch of new tests.Ulf Wendel2007-10-106-0/+226
|
* Adding new tests: mysqli_s*.phptUlf Wendel2007-10-1071-0/+8516
|
* Adding new tests: mysqli_q*.phpt mysqli_r*.phptUlf Wendel2007-10-1025-0/+2592
|