@duckdb/duckdb-wasm 0.1.13-dev21.0 → 0.1.13-dev29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -60,16 +60,6 @@ await db.instantiate(bundle.mainModule, bundle.pthreadWorker);
60
60
  ```ts
61
61
  // Data can be inserted from an existing arrow.Table
62
62
  await c.insertArrowTable(existingTable, { name: 'arrow_table' });
63
- // ..., from Arrow vectors
64
- await c.insertArrowVectors(
65
- {
66
- col1: arrow.Int32Vector.from([1, 2]),
67
- col2: arrow.Utf8Vector.from(['foo', 'bar']),
68
- },
69
- {
70
- name: 'arrow_vectors',
71
- },
72
- );
73
63
  // ..., from a raw Arrow IPC stream
74
64
  const c = await db.connect();
75
65
  const streamResponse = await fetch(`someapi`);