My problem:
tdbcmyslq version 1.1.3 works fine only with mariadb-libs and mariadb-clients up to 10.5.11 On higher versions of mariadb-libs allrows and prepare statements make segfault.
My code:
package require tdbc::mysql
namespace import ::tdbc::mysql::*
connection create db -host 127.0.0.1 -port 3306 -passwd mypass -user root -database mydb
#working on all configs
db evaldirect "select product_id from product_to_category where category_id=555"
#seg fault on mariadb-libs above 10.5.11
db allrows { select * from category_description }
db prepare { select * from category_description }
This code segfaults on latest Arch linux distribution,and latest Alpine linux server with mariadb-client and mariadb-libs 10.6.9. And it works fine if i downgrade mariadb-libs to 10.5.11
Pls can u test this, and if its bug, bugreport it, or tell me how to bugreport.
Upd:
I allready found where to bugreport