You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow the below if build failed for MySQL 8.x (MySQL 8.0.22, Ubuntu 20.04 LTS for me).
just replace 'my_bool' by 'int' then rebuild.
Note:
if you use gcc-9 then add "-fPIC" to CFLAGS into 'makefile.inc'.
like this:
CFLAGS := -Wall -Wno-strict-aliasing -Wno-uninitialized -g -rdynamic -std=gnu99 -fPIC
then, rebuild all.
MySQL 8.x: replace "my_bool" by "int"
file: utils/ut_mysql.c
my_bool reconnect = 1; -> int reconnect = 1;
Can i use mysql 8.0?
is anyone use?
The text was updated successfully, but these errors were encountered: