- Avoid error with UNIX socket
- Update charsets and collations
- Unbreak benchmark build
- OPAM linting
- MariaDB compatibility
- Dunification
- PPX Bitstring
- Implements reset connection
This new release introduces backward incompatible changes:
- the old
native_data
type is now private, you have to use the newdata_*
andto_ocaml_*
functions to convert the data between OCaml world and MySQL world. get_result_set
function has a new signature:val get_result_set : result -> Mp_result_set_packet.result_select
insert_id
is now a tuple of type(Int64.t * Big_int.big_int)
. TheInt64
value must be used when theauto_increment
field is not aBIGINT UNSIGNED
, otherwise theBig_int
value must be used.
- Add opam file
- Initial version