(table, values)
| 175 | await this.create(table, v.create); |
| 176 | }, |
| 177 | async create(table, values) { |
| 178 | const row = applyDefaults(table, values); |
| 179 | tableRows(db, table).push(row); |
| 180 | return cloneValue(row); |
| 181 | }, |
| 182 | async createMany(table, values) { |
| 183 | const idColumn = table.getIdColumn(); |
| 184 | return Promise.all(values.map((value) => this.create(table, value))).then((rows) => |
nothing calls this directly
no test coverage detected