This repository was archived by the owner on Mar 7, 2024. It is now read-only.

Description
internal/trino/trino_catalogo_test.go:39:15: Use Exec instead of Query to execute SHOW query (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..