(ctx context.Context, id string)
| 302 | ` |
| 303 | |
| 304 | func (q *Queries) IncrementTx(ctx context.Context, id string) (int64, error) { |
| 305 | row := q.db.QueryRowContext(ctx, incrementTx, id) |
| 306 | var current_tx int64 |
| 307 | err := row.Scan(¤t_tx) |
| 308 | return current_tx, err |
| 309 | } |
| 310 | |
| 311 | const setFileMeta = `-- name: SetFileMeta :exec |
| 312 | INSERT INTO file_metas (id, graph_id, file_id, blob_path, checksum, size, last_modified_at, last_modified_tx) |
nothing calls this directly
no test coverage detected