()
| 180 | return this.compiler.compile(this, withoutTransform ?? false) |
| 181 | } |
| 182 | commit(): Effect.Effect<ReadonlyArray<A>, Error.SqlError> { |
| 183 | return this.withConnection( |
| 184 | "execute", |
| 185 | (connection, sql, params) => connection.execute(sql, params, this.transformRows) |
| 186 | ) |
| 187 | } |
| 188 | toJSON() { |
| 189 | const [sql, params] = this.compile() |
| 190 | return { |
no test coverage detected