| 1 |
root |
1.1 |
Revision history for Perl extension Coro::Mysql |
| 2 |
|
|
|
| 3 |
root |
1.23 |
2.1 Mon Mar 4 12:40:34 CET 2019 |
| 4 |
root |
1.22 |
- first attempt at supporting DBD::MariaDB. |
| 5 |
|
|
- new Coro::Mysql::is_unblocked function. |
| 6 |
|
|
- new Coro::Mysql::have_ev function. |
| 7 |
|
|
- updated docs to remove violite scare and add newest history. |
| 8 |
root |
1.21 |
|
| 9 |
root |
1.20 |
2.0 Mon Mar 4 06:15:03 CET 2019 |
| 10 |
|
|
- major port to new MARIADB_PVIO structure (Pluggable Virtual |
| 11 |
|
|
IO) - so, yay, finally no more header file hacking because an |
| 12 |
|
|
official API exists, but since it is new, the PVIO api is quite |
| 13 |
|
|
broken, and due to the massive changes involved, not sure about |
| 14 |
|
|
backwards compatibility or stability. Seems to work for me. |
| 15 |
|
|
- use mariadb_config or mysql_config commands to find includes |
| 16 |
|
|
and libraries. |
| 17 |
|
|
|
| 18 |
root |
1.19 |
1.27 Tue Jun 3 15:38:29 CEST 2014 |
| 19 |
root |
1.20 |
- grrr, remove debugging code again. |
| 20 |
root |
1.19 |
|
| 21 |
root |
1.18 |
1.26 Tue Jun 3 15:37:40 CEST 2014 |
| 22 |
|
|
- fix a use-after-free corruption bug when closing database |
| 23 |
|
|
handles. |
| 24 |
|
|
|
| 25 |
root |
1.17 |
1.25 Tue Jun 3 05:17:12 CEST 2014 |
| 26 |
|
|
- mariadb 5.5 isn't actually binary-compatible to mysql 5.5, |
| 27 |
|
|
work around that. |
| 28 |
|
|
- remove debugging code (sigh). |
| 29 |
|
|
|
| 30 |
root |
1.16 |
1.24 Tue Jun 3 05:08:07 CEST 2014 |
| 31 |
|
|
- port to mariadb 5.5 (and probably anything < 10), by treating it |
| 32 |
|
|
like mysql with missing library symbols. |
| 33 |
|
|
|
| 34 |
root |
1.15 |
1.23 Tue May 6 15:03:55 CEST 2014 |
| 35 |
|
|
- work around mariadb 10.0.10 no longer exporting vio functions by skipping |
| 36 |
|
|
most of the safety checks - library mismatches will now cause memory |
| 37 |
|
|
corruption causing crashes on the first sql statement execution. |
| 38 |
root |
1.14 |
- use correct header errno.h, not sys/errno.h. |
| 39 |
|
|
|
| 40 |
root |
1.13 |
1.22 Fri Aug 2 06:06:14 CEST 2013 |
| 41 |
|
|
- experimental support for mariadb 10 (which has quite big changes). |
| 42 |
|
|
- work around incompatible changes (again) in 5.16. use feature my ass. |
| 43 |
|
|
(patch by....) |
| 44 |
|
|
|
| 45 |
root |
1.12 |
1.21 Thu Oct 11 05:21:10 CEST 2012 |
| 46 |
|
|
- no functional changes. |
| 47 |
root |
1.11 |
- document the fact that the API used by this module is now public, |
| 48 |
|
|
so it doesn't rely on library internals anymore. |
| 49 |
|
|
- verified to work with mysql connector/C 6.0.2 (compatible to |
| 50 |
|
|
5.5). |
| 51 |
|
|
|
| 52 |
root |
1.10 |
1.2 Thu Jul 26 23:19:47 CEST 2012 |
| 53 |
|
|
- ensure DBD::mysql and Coro::Mysql are linked against the same |
| 54 |
|
|
libmysqlclient version (required is same libmysqlclient, but no |
| 55 |
|
|
idea how to check for that). |
| 56 |
|
|
- explicitly support libmysqlclient 5.1 and 5.5 - 5.1 probably just |
| 57 |
root |
1.11 |
worked before on most (but not all) architectures. |
| 58 |
root |
1.10 |
|
| 59 |
root |
1.9 |
1.1 Sun Feb 20 11:34:38 CET 2011 |
| 60 |
root |
1.8 |
- implement a special EV mode, used when EV was available at build |
| 61 |
root |
1.9 |
time AND is used by AnyEvent, otherwise fall back to Coro::Handle. |
| 62 |
|
|
- perl 5.10 or 5.12 breaks the syntax used in the with_db. fixed. |
| 63 |
root |
1.8 |
|
| 64 |
root |
1.7 |
1.02 Wed Sep 1 18:37:48 CEST 2010 |
| 65 |
|
|
- use xgptr everywhere, so it actually works on those newer |
| 66 |
|
|
systems. |
| 67 |
|
|
|
| 68 |
root |
1.6 |
1.01 Tue Aug 31 16:40:16 CEST 2010 |
| 69 |
|
|
- gptr typedef is missing from newer libmysql, as |
| 70 |
|
|
pointed out by Yury Zavarin. |
| 71 |
|
|
|
| 72 |
root |
1.5 |
1.0 Sun Jun 21 02:56:05 CEST 2009 |
| 73 |
root |
1.4 |
- allow unblock calls on non-mysql handles as well |
| 74 |
root |
1.5 |
(and return them unchanged). |
| 75 |
|
|
- unpatching was done too late durign destruction - |
| 76 |
|
|
hook diretcly into mysql's vio for that. saves memory |
| 77 |
|
|
and should be faster, even though neither will make a big |
| 78 |
|
|
difference :) |
| 79 |
|
|
- added a nice usage example using PApp::SQL 1.04. |
| 80 |
root |
1.3 |
|
| 81 |
root |
1.2 |
0.1 Sat May 30 08:57:43 CEST 2009 |
| 82 |
|
|
- first cpan upload. |
| 83 |
|
|
|
| 84 |
root |
1.1 |
0.01 Sun May 17 15:11:00 CEST 2009 |
| 85 |
|
|
- original version; cloned from Convert::Scalar. |
| 86 |
|
|
|