(ctx context.Context)
| 35 | } |
| 36 | |
| 37 | func (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) { |
| 38 | row := q.db.QueryRowContext(ctx, withoutAs) |
| 39 | var i WithoutAsRow |
| 40 | err := row.Scan(&i.X, &i.Y) |
| 41 | return i, err |
| 42 | } |
nothing calls this directly
no test coverage detected