(ctx context.Context)
| 113 | ` |
| 114 | |
| 115 | func (q *Queries) Log(ctx context.Context) (float64, error) { |
| 116 | row := q.db.QueryRowContext(ctx, log) |
| 117 | var log float64 |
| 118 | err := row.Scan(&log) |
| 119 | return log, err |
| 120 | } |
| 121 | |
| 122 | const logs = `-- name: Logs :one |
| 123 | SELECT log(2.0, 64.0) |