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