duckdb 0.7.2-dev899.0 → 0.7.2-dev904.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/lib/duckdb.d.ts
CHANGED
@@ -100,7 +100,7 @@ export class Connection {
|
|
100
100
|
unregister_udf(name: string, callback: Callback<any>): void;
|
101
101
|
|
102
102
|
stream(sql: any, ...args: any[]): QueryResult;
|
103
|
-
arrowIPCStream(sql: any, ...args: any[]): IpcResultStreamIterator
|
103
|
+
arrowIPCStream(sql: any, ...args: any[]): Promise<IpcResultStreamIterator>;
|
104
104
|
|
105
105
|
register_buffer(name: string, array: ArrowIterable, force: boolean, callback?: Callback<void>): void;
|
106
106
|
unregister_buffer(name: string, callback?: Callback<void>): void;
|
package/lib/duckdb.js
CHANGED
@@ -189,7 +189,7 @@ Connection.prototype.arrowIPCAll = function (sql) {
|
|
189
189
|
* @arg sql
|
190
190
|
* @param {...*} params
|
191
191
|
* @param callback
|
192
|
-
* @return IpcResultStreamIterator
|
192
|
+
* @return Promise<IpcResultStreamIterator>
|
193
193
|
*/
|
194
194
|
Connection.prototype.arrowIPCStream = async function (sql) {
|
195
195
|
const query = "SELECT * FROM to_arrow_ipc((" + sql + "));";
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
#ifndef DUCKDB_VERSION
|
2
|
-
#define DUCKDB_VERSION "0.7.2-
|
2
|
+
#define DUCKDB_VERSION "0.7.2-dev904"
|
3
3
|
#endif
|
4
4
|
#ifndef DUCKDB_SOURCE_ID
|
5
|
-
#define DUCKDB_SOURCE_ID "
|
5
|
+
#define DUCKDB_SOURCE_ID "56a94e3a49"
|
6
6
|
#endif
|
7
7
|
#include "duckdb/function/table/system_functions.hpp"
|
8
8
|
#include "duckdb/main/database.hpp"
|