@malloydata/db-duckdb 0.0.130-dev240311153734 → 0.0.130-dev240311192728
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.spec.js
CHANGED
|
@@ -24,13 +24,8 @@
|
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
const duckdb_common_1 = require("./duckdb_common");
|
|
26
26
|
const duckdb_connection_1 = require("./duckdb_connection");
|
|
27
|
-
const
|
|
28
|
-
|
|
29
|
-
'duckdb').split(',');
|
|
30
|
-
let describe = globalThis.describe;
|
|
31
|
-
if (!envDatabases.includes('duckdb')) {
|
|
32
|
-
describe = describe.skip;
|
|
33
|
-
}
|
|
27
|
+
const test_1 = require("@malloydata/malloy/test");
|
|
28
|
+
const [describe] = (0, test_1.describeIfDatabaseAvailable)(['duckdb']);
|
|
34
29
|
/*
|
|
35
30
|
* !IMPORTANT
|
|
36
31
|
*
|
|
@@ -22,15 +22,10 @@
|
|
|
22
22
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
const test_1 = require("@malloydata/malloy/test");
|
|
25
26
|
const duckdb_common_1 = require("./duckdb_common");
|
|
26
27
|
const duckdb_wasm_connection_node_1 = require("./duckdb_wasm_connection_node");
|
|
27
|
-
const
|
|
28
|
-
process.env['MALLOY_DATABASE'] ||
|
|
29
|
-
'duckdb_wasm').split(',');
|
|
30
|
-
let describe = globalThis.describe;
|
|
31
|
-
if (!envDatabases.includes('duckdb_wasm')) {
|
|
32
|
-
describe = describe.skip;
|
|
33
|
-
}
|
|
28
|
+
const [describe] = (0, test_1.describeIfDatabaseAvailable)(['duckdb_wasm']);
|
|
34
29
|
describe('DuckDBWasmConnection', () => {
|
|
35
30
|
let connection;
|
|
36
31
|
let findTables;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-duckdb",
|
|
3
|
-
"version": "0.0.130-
|
|
3
|
+
"version": "0.0.130-dev240311192728",
|
|
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.6",
|
|
44
|
-
"@malloydata/malloy": "^0.0.130-
|
|
44
|
+
"@malloydata/malloy": "^0.0.130-dev240311192728",
|
|
45
45
|
"apache-arrow": "^13.0.0",
|
|
46
46
|
"duckdb": "0.9.2",
|
|
47
47
|
"web-worker": "^1.2.0"
|