PostgresUpdate constructor

PostgresUpdate(
  1. PostgresTableHandle table, {
  2. required Map<String, Object?> fields,
  3. PostgresQuerySpec? query,
  4. String? outputAs,
  5. bool returnMatchingRows = false,
})

Implementation

PostgresUpdate(
  this.table, {
  required Map<String, Object?> fields,
  this.query,
  this.outputAs,
  this.returnMatchingRows = false,
}) : fields = normalizeExpressionMap(fields);