(ctx context.Context, stmt *exql.Statement, args ...interface{})
| 595 | } |
| 596 | |
| 597 | func (p *exprProxy) StatementQuery(ctx context.Context, stmt *exql.Statement, args ...interface{}) (*sql.Rows, error) { |
| 598 | s, err := stmt.Compile(p.t) |
| 599 | if err != nil { |
| 600 | return nil, err |
| 601 | } |
| 602 | return compat.QueryContext(p.db, ctx, s, args) |
| 603 | } |
| 604 | |
| 605 | func (p *exprProxy) StatementQueryRow(ctx context.Context, stmt *exql.Statement, args ...interface{}) (*sql.Row, error) { |
| 606 | s, err := stmt.Compile(p.t) |
nothing calls this directly
no test coverage detected