1{
2 "db_name": "PostgreSQL",
3 "query": "INSERT INTO record (did, collection, rkey, rev, cid, live, data)\n VALUES ($1, $2, $3, $4, $5, $6, $7)\n ON CONFLICT\n ON CONSTRAINT record_pkey\n DO UPDATE\n SET (rev, cid, live, data) = (EXCLUDED.rev, EXCLUDED.cid, EXCLUDED.live, EXCLUDED.data)\n WHERE EXCLUDED.rev > record.rev\n",
4 "describe": {
5 "columns": [],
6 "parameters": {
7 "Left": [
8 "Text",
9 "Text",
10 "Text",
11 "Text",
12 "Text",
13 "Bool",
14 "Jsonb"
15 ]
16 },
17 "nullable": []
18 },
19 "hash": "eea727151b4f26df90b6023548bf059e1bc5645e7600fe159cd20d09030e44dd"
20}