(ctx context.Context, arg SetFileMetaParams)
| 324 | } |
| 325 | |
| 326 | func (q *Queries) SetFileMeta(ctx context.Context, arg SetFileMetaParams) error { |
| 327 | _, err := q.db.ExecContext(ctx, setFileMeta, |
| 328 | arg.ID, |
| 329 | arg.GraphID, |
| 330 | arg.FileID, |
| 331 | arg.BlobPath, |
| 332 | arg.Checksum, |
| 333 | arg.Size, |
| 334 | arg.LastModifiedTx, |
| 335 | ) |
| 336 | return err |
| 337 | } |
| 338 | |
| 339 | const setTx = `-- name: SetTx :exec |
| 340 | UPDATE graphs |
nothing calls this directly
no test coverage detected