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
@35598253 hello, the SELECT c.COLUMN_NAME AS 'Field', ... query is used to query table fields from certain table in mariadb,and it is query once for a table and caches the result in memory. The table fields are used for fields filter operations.
Go version
go 1.24.1
GoFrame version
2.8.3
Can this bug be reproduced with the latest release?
Option Yes
What did you do?
[database]
link ="maraidb:account:password@tcp(ip:port)/database "
What did you see happen?
[DEBU]
SELECT c.COLUMN_NAME AS 'Field', ( CASE WHEN ch.CHECK_CLAUSE LIKE 'json_valid%' THEN 'json' ELSE c.COLUMN_TYPE END ) AS 'Type',...
There are many such queries in the log, and the query time is more than 30ms.
What did you expect to see?
[database]
link ="mysql:account:password@tcp(ip:port)/database "
Change to mysql and it will work fine
The text was updated successfully, but these errors were encountered: