Skip to content

Commit 487b289

Browse files
authored
Merge pull request #25 from cuihom/main
Fix snapshot commit metadata on conflict
2 parents 58ee945 + e7c2d87 commit 487b289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ PostgresDB.prototype.commit = async function(collection, id, op, snapshot, optio
8080
WHERE collection = $1 AND doc_id = $2
8181
FOR UPDATE
8282
)
83-
ON CONFLICT (collection, doc_id) DO UPDATE SET version = $3, data = $5, doc_type = $4, metadata = $5
83+
ON CONFLICT (collection, doc_id) DO UPDATE SET version = $3, data = $5, doc_type = $4, metadata = $6
8484
RETURNING version
8585
)
8686
INSERT INTO ops (collection, doc_id, version, operation)

0 commit comments

Comments
 (0)