@malloydata/db-duckdb 0.0.24-dev230217173859 → 0.0.24-dev230217181455
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
CHANGED
|
@@ -34,7 +34,7 @@ export declare abstract class DuckDBCommon implements Connection, PersistSQLResu
|
|
|
34
34
|
* (https://github.com/malloydata/malloy/issues/635)
|
|
35
35
|
*
|
|
36
36
|
* @param s struct's column declaration
|
|
37
|
-
* @
|
|
37
|
+
* @return Array of column type declarations
|
|
38
38
|
*/
|
|
39
39
|
private splitColumns;
|
|
40
40
|
private stringToTypeMap;
|
package/dist/duckdb_common.js
CHANGED
|
@@ -112,7 +112,7 @@ class DuckDBCommon {
|
|
|
112
112
|
* (https://github.com/malloydata/malloy/issues/635)
|
|
113
113
|
*
|
|
114
114
|
* @param s struct's column declaration
|
|
115
|
-
* @
|
|
115
|
+
* @return Array of column type declarations
|
|
116
116
|
*/
|
|
117
117
|
splitColumns(s) {
|
|
118
118
|
const columns = [];
|
|
@@ -60,7 +60,7 @@ const duckdb_common_1 = require("./duckdb_common");
|
|
|
60
60
|
* so we need this fairly gross function to unwrap those.
|
|
61
61
|
*
|
|
62
62
|
* @param value Element from an Arrow StructRow.
|
|
63
|
-
* @
|
|
63
|
+
* @return Vanilla Javascript value
|
|
64
64
|
*/
|
|
65
65
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
66
66
|
const unwrapArrow = (value) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-duckdb",
|
|
3
|
-
"version": "0.0.24-
|
|
3
|
+
"version": "0.0.24-dev230217181455",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@duckdb/duckdb-wasm": "^1.21.0",
|
|
41
|
-
"@malloydata/malloy": "^0.0.24-
|
|
41
|
+
"@malloydata/malloy": "^0.0.24-dev230217181455",
|
|
42
42
|
"duckdb": "0.7.0",
|
|
43
43
|
"web-worker": "^1.2.0"
|
|
44
44
|
}
|