(database, name, array, options)
| 321 | } |
| 322 | |
| 323 | async function insertArray(database, name, array, options) { |
| 324 | const arrow = await import("npm:apache-arrow"); |
| 325 | const table = arrow.tableFromJSON(array); |
| 326 | return await insertArrowTable(database, name, table, options); |
| 327 | } |
| 328 | |
| 329 | async function createDuckDB() { |
| 330 | const {mainWorker, mainModule} = await bundle; |
no test coverage detected