(ctx context.Context, data []byte)
| 67 | ` |
| 68 | |
| 69 | func (q *Queries) InsertMetric(ctx context.Context, data []byte) (int64, error) { |
| 70 | row := q.queryRow(ctx, q.insertMetricStmt, insertMetric, data) |
| 71 | var id int64 |
| 72 | err := row.Scan(&id) |
| 73 | return id, err |
| 74 | } |
| 75 | |
| 76 | const insertSpan = `-- name: InsertSpan :one |
| 77 | INSERT INTO |