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
{{ message }}
This repository was archived by the owner on Mar 7, 2024. It is now read-only.
internal/trino/trino_catalogo_test.go:39:15: Use Exec instead of Query to execute
SHOWquery (execinquery)rows, err := db.Query("SHOW tables")
the above error suggests to use db.Exec instead of db.Query but SHOW tables will return the table names,
db.Exec will not return any results..