@malloydata/db-duckdb 0.0.62 → 0.0.63-dev230728193024
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/dist/duckdb_common.d.ts +2 -1
- package/dist/duckdb_common.js +3 -0
- package/package.json +2 -2
package/dist/duckdb_common.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MalloyQueryData, PersistSQLResults, PooledConnection, QueryDataRow, QueryRunStats, RunSQLOptions, SQLBlock, StreamingConnection, StructDef, TestableConnection } from '@malloydata/malloy';
|
|
1
|
+
import { DialectProviderConnection, MalloyQueryData, PersistSQLResults, PooledConnection, QueryDataRow, QueryRunStats, RunSQLOptions, SQLBlock, StreamingConnection, StructDef, TestableConnection } from '@malloydata/malloy';
|
|
2
2
|
export interface DuckDBQueryOptions {
|
|
3
3
|
rowLimit: number;
|
|
4
4
|
}
|
|
@@ -14,6 +14,7 @@ export declare abstract class DuckDBCommon implements TestableConnection, Persis
|
|
|
14
14
|
constructor(queryOptions?: QueryOptionsReader | undefined);
|
|
15
15
|
isPool(): this is PooledConnection;
|
|
16
16
|
canPersist(): this is PersistSQLResults;
|
|
17
|
+
providesDialect(): this is DialectProviderConnection;
|
|
17
18
|
protected abstract setup(): Promise<void>;
|
|
18
19
|
protected abstract runDuckDBQuery(sql: string): Promise<{
|
|
19
20
|
rows: QueryDataRow[];
|
package/dist/duckdb_common.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-duckdb",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.63-dev230728193024",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@malloydata/duckdb-wasm": "0.0.2",
|
|
44
|
-
"@malloydata/malloy": "^0.0.
|
|
44
|
+
"@malloydata/malloy": "^0.0.63-dev230728193024",
|
|
45
45
|
"apache-arrow": "^11.0.0",
|
|
46
46
|
"duckdb": "0.8.1",
|
|
47
47
|
"web-worker": "^1.2.0"
|