(ctx *sql.Context, query string, args ...any)
| 84 | } |
| 85 | |
| 86 | func QueryRowCatalog(ctx *sql.Context, query string, args ...any) *stdsql.Row { |
| 87 | conn, err := ctx.Session.(ConnectionHolder).GetCatalogConn(ctx) |
| 88 | if err != nil { |
| 89 | return nil |
| 90 | } |
| 91 | return conn.QueryRowContext(ctx, query, args...) |
| 92 | } |
| 93 | |
| 94 | func Exec(ctx *sql.Context, query string, args ...any) (stdsql.Result, error) { |
| 95 | conn, err := GetConn(ctx) |
no test coverage detected