@malloydata/db-duckdb 0.0.142 → 0.0.143-dev240416173709

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.
@@ -85,5 +85,12 @@ FROM read_parquet("inventory_items2.parquet")
85
85
  }, {});
86
86
  expect(findTables).toHaveBeenCalledWith(['order_items2.parquet', 'inventory_items2.parquet'], {});
87
87
  });
88
+ // Test to check that DecimalBigNums are broken.
89
+ // Remove/update when fixed, and remove the work-around in
90
+ // sqlLiteralNumber()
91
+ it('DecimalBigNum is broken', async () => {
92
+ const result = await connection.runSQL('SELECT 1.234 AS n1');
93
+ expect(result).toEqual({ 'rows': [{ 'n1': 1234 }], 'totalRows': 1 });
94
+ });
88
95
  });
89
96
  //# sourceMappingURL=duckdb_wasm_connection.spec.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-duckdb",
3
- "version": "0.0.142",
3
+ "version": "0.0.143-dev240416173709",
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
  "@duckdb/duckdb-wasm": "1.28.1-dev106.0",
44
- "@malloydata/malloy": "^0.0.142",
44
+ "@malloydata/malloy": "^0.0.143-dev240416173709",
45
45
  "@motherduck/wasm-client": "^0.4.0",
46
46
  "apache-arrow": "^14.0.0",
47
47
  "duckdb": "0.9.2",