Skip to content

Commit

Permalink
MySQL 8 has retired 'my_bool' type
Browse files Browse the repository at this point in the history
Closes #101
  • Loading branch information
root committed Aug 21, 2019
1 parent e13e41e commit 6861ec4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The Cacti Group | spine

1.2.6
-issue#101: MySQL 8 has retired 'my_bool' type
-issue#104: Spine should report which threads are outstanding
-issue#105: Spine should include 'Process[<id>]' in standard logging
-issue#107: Log Buffer is too small to handle some output
Expand Down
2 changes: 1 addition & 1 deletion sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ void db_connect(int type, MYSQL *mysql) {
timeout = 5;
rtimeout = 10;
wtimeout = 20;
my_bool reconnect = 1;
_Bool reconnect = 1;

mysql_init(mysql);

Expand Down

0 comments on commit 6861ec4

Please sign in to comment.