(ctx context.Context, stmt *exql.Statement, args ...interface{})
| 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) |
| 607 | if err != nil { |
| 608 | return nil, err |
| 609 | } |
| 610 | return compat.QueryRowContext(p.db, ctx, s, args), nil |
| 611 | } |
| 612 | |
| 613 | var ( |
| 614 | _ = db.SQL(&sqlBuilder{}) |
nothing calls this directly
no test coverage detected