Re: change my_bool to bool based on mysql 8.0.1

2018-12-12 Thread amalysh
Hi, thanks for this patch but will this patch break compilation for older mysql versions? If yes, then something like: #ifndef mybool #define mybool bool #endif would be more suitable. Thanks, Alex > Am 11.12.2018 um 21:34 schrieb Nadir Hamid : > > hello Kannel Project, > > in mysql 8.0.1

change my_bool to bool based on mysql 8.0.1

2018-12-11 Thread Nadir Hamid
hello Kannel Project, in mysql 8.0.1 and above versions "my_bool" was changed to "bool". see: https://docs.oracle.com/cd/E17952_01/mysql-8.0-relnotes-en/news-8-0-1.html the attached patch includes an update that renames the "my_bool" to "bool" based on mysql 8.0.1 and up releases. thanks