I create a Apache Doris, add some tables into it's database. And I know Apache Doris support mysql to connect it.So I want to use go-xorm and mysql driver to connect Apache Doris. when I used this command "xorm reverse mysql username:password@ip:port/database?charset=utf8 ./templates/goxorm" to reverse mysql tables to structs in golang code, I got an error [Error] reverse.go:196 Error 1064: Unsupported command(COM_STMT_PREPARE) I have try to connect mysql and use _ "github.com/go-sql-driver/mysql" to connected it, can select some data from it. So I think mysql and tables are right. So I want to know if there is some function that go-xorm do not support. like "DATATIME" or "FLOAT". if Go-xorm NOT SUPPORT this, is there other golang tools to support like go-xorm?