Change "update partial" to "patch" for Postgres

This commit is contained in:
2023-12-28 19:39:02 -05:00
parent 40c776c9a7
commit d9e37445a8
10 changed files with 225 additions and 230 deletions

View File

@@ -298,7 +298,7 @@ module WithConn =
/// Update an entire document
[<CompiledName "Full">]
let full tableName (docId: 'TKey) (document: 'TDoc) conn =
Custom.nonQuery (Query.Update.full tableName) [ idParam docId; jsonParam "@data" document ] conn
Custom.nonQuery (Query.update tableName) [ idParam docId; jsonParam "@data" document ] conn
/// Update an entire document
[<CompiledName "FSharpFullFunc">]