{ "db_name": "PostgreSQL", "query": "\n WITH moved AS (\n DELETE FROM pending_s3_deletions\n WHERE id = ANY($1)\n RETURNING id, s3_key, bucket, source, created_at, attempts, last_attempted_at\n )\n INSERT INTO pending_s3_deletions_dead_letter\n (id, s3_key, bucket, source, created_at, attempts, last_attempted_at)\n SELECT id, s3_key, bucket, source, created_at, attempts, last_attempted_at\n FROM moved\n ON CONFLICT (id) DO NOTHING\n ", "describe": { "columns": [], "parameters": { "Left": [ "UuidArray" ] }, "nullable": [] }, "hash": "94e5ea852c5bf35a798c65965823071169cbb0de4e3fa024bbf8604b0ba75063" }