Open graninas opened 5 years ago
Seems duplication of https://github.com/tathougies/beam-mysql/issues/11.
UPD: sorry, wrong text was inserted. Not a duplication.
It seems these options have been made conditionally compillable in the mysql
library:
#if !defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 80000
#else
UseRemoteConnection ->
go (#const MYSQL_OPT_USE_REMOTE_CONNECTION) nullPtr
UseEmbeddedConnection ->
go (#const MYSQL_OPT_USE_EMBEDDED_CONNECTION) nullPtr
GuessConnection ->
go (#const MYSQL_OPT_GUESS_CONNECTION) nullPtr
ClientIP ip ->
useAsCString ip $ go (#const MYSQL_SET_CLIENT_IP)
SecureAuth b ->
withBool b $ go (#const MYSQL_SECURE_AUTH)
#endif
I've commented them out in the beam-mysql
, and also I've merged the travis/better-parsing
branch into master
in my fork:
https://github.com/graninas/beam-mysql
Not sure if it works though, and what features are now broken. Hopefully we'll not be needing in them.
Hi, I'm getting the following build errors (stack, lts-14.4):
Is there any solution to this?