(ctx context.Context, id int64)
| 6487 | } |
| 6488 | |
| 6489 | func (q *querier) TryAcquireLock(ctx context.Context, id int64) (bool, error) { |
| 6490 | return q.db.TryAcquireLock(ctx, id) |
| 6491 | } |
| 6492 | |
| 6493 | func (q *querier) UnarchiveChatByID(ctx context.Context, id uuid.UUID) ([]database.Chat, error) { |
| 6494 | chat, err := q.db.GetChatByID(ctx, id) |
nothing calls this directly
no test coverage detected