#
13c8bba0 |
| 11-Dec-2009 |
Andrey Hristov |
Make MYSQLND_NET dynamically allocated structure with allocator and deallocator. More member functions will come.
|
#
a9295f03 |
| 11-Dec-2009 |
Andrey Hristov |
remove stale comment
|
#
0c7a9b80 |
| 11-Dec-2009 |
Andrey Hristov |
Move two functions which are used in the extension as methods of the connection. Two functions less in the global namespace.
|
Revision tags: php-5.2.12RC4 |
|
#
06a417b6 |
| 09-Dec-2009 |
Andrey Hristov |
Remove stub code which never actually was used for anything. Things like this can be built on top of the core.
|
#
6f598e62 |
| 09-Dec-2009 |
Andrey Hristov |
Remove the zval caching from mysqlnd. It was disabled versions ago due to problems on windows, which were not debugged. Better have code that is disabled not in the core.
|
#
4d273500 |
| 09-Dec-2009 |
Andrey Hristov |
Remove disabled code - threaded fetching. This can be implemented on a upper level and by offloading it we reduce the complexity of the core.
|
#
0f0f5f22 |
| 03-Dec-2009 |
Andrey Hristov |
I svn-commit.2.tmp (Modified) Row 2 Col 28 11:45 Ctrl-K H for help fix compilation on windows and
I svn-commit.2.tmp (Modified) Row 2 Col 28 11:45 Ctrl-K H for help fix compilation on windows and with other compilers who don't like void* arithmetic
show more ...
|
#
2386938a |
| 03-Dec-2009 |
Pierre Joye |
- disable this debug code until it is actually fixed
|
#
bfc0ec18 |
| 03-Dec-2009 |
Andrey Hristov |
fix segfault introduced by Pierre in a recent commit old code was doing something like conn + sizeof(MYSQLND) * MYSQLND + plugin * sizeof(void) * sizeof(MYSQLND) because `conn` is not cas
fix segfault introduced by Pierre in a recent commit old code was doing something like conn + sizeof(MYSQLND) * MYSQLND + plugin * sizeof(void) * sizeof(MYSQLND) because `conn` is not casted to void*. `conn` has to be casted to void * and then the whole experession will be void * and the calculations will work.
show more ...
|
#
2a3ec70d |
| 30-Nov-2009 |
Pierre Joye |
- void is NaN, you can't do math ops on void. Declarations go first. Fix TS build
|
Revision tags: php-5.2.12RC3, php-5.2.12RC2 |
|
#
1cf1cb30 |
| 26-Nov-2009 |
Andrey Hristov |
fix debug windows build as well as remove a compilation warning (a header not included)
|
#
5143fe41 |
| 20-Nov-2009 |
Andrey Hristov |
Compressed protocol support + extensibility for mysqlnd
|
Revision tags: php-5.3.1, php-5.3.1RC4, php-5.2.12RC1, php-5.3.1RC3 |
|
#
7b5ce9ab |
| 22-Oct-2009 |
Andrey Hristov |
Don't forget to update the length too
|
#
f2814dd0 |
| 22-Oct-2009 |
Andrey Hristov |
Have the lengths also to skip many calls to strlen
|
#
a692479d |
| 22-Oct-2009 |
Andrey Hristov |
Count number of affected_rows for normal and PS queries
|
Revision tags: php-5.3.1RC2 |
|
#
d01d398b |
| 19-Oct-2009 |
Ulf Wendel |
Fixing host info for TCP/IP and aligning mysqlnd and libmysql
|
#
3eeaf566 |
| 16-Oct-2009 |
Ulf Wendel |
Extending mysqlnd statistics/monitoring. Now counting COM_* commands.
|
#
d8dc47d5 |
| 15-Oct-2009 |
Ulf Wendel |
Making mysqlnd emit no warnings when fetching pooled persistent connections that have timed out or are unusable for any other reason - bug #49761
|
#
ab4670ee |
| 15-Oct-2009 |
Ulf Wendel |
Fixing problems when calling connect (again and again) on a valid connection handle. Most of the patch comes from Andrey.
|
#
a1d3a322 |
| 08-Oct-2009 |
Ulf Wendel |
Avoid buffer resizing and let the initial buffer allocation happen a couple of lines later with conn->m->set_client_option(conn, MYSQLND_OPT_NET_CMD_BUFFER_SIZE, ...). Andrey, I leave it to you to ch
Avoid buffer resizing and let the initial buffer allocation happen a couple of lines later with conn->m->set_client_option(conn, MYSQLND_OPT_NET_CMD_BUFFER_SIZE, ...). Andrey, I leave it to you to change the default size to 128k.
show more ...
|
#
4e6a1c27 |
| 08-Oct-2009 |
Ulf Wendel |
Fixing pconnect statistics.
|
#
309fced6 |
| 07-Oct-2009 |
Andrey Hristov |
Increase the minimal size of the command buffer, which is used for sending queries and in the future commpressed patch for reading almost all packets from the wire instead of using stack buff
Increase the minimal size of the command buffer, which is used for sending queries and in the future commpressed patch for reading almost all packets from the wire instead of using stack buffers.
show more ...
|
Revision tags: oci8-1.4.0 |
|
#
06523621 |
| 06-Oct-2009 |
Andrey Hristov |
revert the last change
|
#
d9382399 |
| 06-Oct-2009 |
Andrey Hristov |
count the queries
|
#
ba5c40b2 |
| 30-Sep-2009 |
Andrey Hristov |
Use mnd_ wrappers wherever possible. Needed for statistics.
|