@malloydata/db-trino 0.0.138-dev240405133532 → 0.0.138

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.
@@ -240,6 +240,10 @@ class TrinoConnection {
240
240
  // JSON.stringify(malloyRow[column.name])
241
241
  // );
242
242
  }
243
+ else if (malloyColumns[i].type === 'number' && row[i] !== null) {
244
+ // decimal numbers come back as strings
245
+ malloyRow[column.name] = +row[i];
246
+ }
243
247
  else {
244
248
  malloyRow[column.name] = row[i];
245
249
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-trino",
3
- "version": "0.0.138-dev240405133532",
3
+ "version": "0.0.138",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",