@malloydata/db-duckdb 0.0.16-dev221217002701 → 0.0.16-dev230103171731
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.
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
/// <reference path="../src/duckdb.d.ts" />
|
|
2
1
|
import { DuckDBCommon, QueryOptionsReader } from "./duckdb_common";
|
|
3
|
-
import {
|
|
2
|
+
import { Row } from "duckdb";
|
|
4
3
|
import { QueryDataRow, RunSQLOptions } from "@malloydata/malloy";
|
|
5
4
|
export declare class DuckDBConnection extends DuckDBCommon {
|
|
6
5
|
readonly name: string;
|
|
7
6
|
private workingDirectory;
|
|
8
|
-
protected connection:
|
|
9
|
-
protected database:
|
|
7
|
+
protected connection: any;
|
|
8
|
+
protected database: any;
|
|
10
9
|
protected isSetup: Promise<void> | undefined;
|
|
11
10
|
constructor(name: string, databasePath?: string, workingDirectory?: string, queryOptions?: QueryOptionsReader);
|
|
12
11
|
protected setup(): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-duckdb",
|
|
3
|
-
"version": "0.0.16-
|
|
3
|
+
"version": "0.0.16-dev230103171731",
|
|
4
4
|
"license": "GPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@duckdb/duckdb-wasm": "^1.17.0",
|
|
22
|
-
"@malloydata/malloy": "^0.0.16-
|
|
22
|
+
"@malloydata/malloy": "^0.0.16-dev230103171731",
|
|
23
23
|
"duckdb": "0.6.1"
|
|
24
24
|
}
|
|
25
25
|
}
|