@malloydata/malloy 0.0.115 → 0.0.116-dev231213173224

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.
@@ -55,7 +55,7 @@ const postgresToMalloyTypes = {
55
55
  'integer': { type: 'number', numberType: 'integer' },
56
56
  'bigint': { type: 'number', numberType: 'integer' },
57
57
  'double precision': { type: 'number', numberType: 'float' },
58
- 'timestamp without time zone': { type: 'timestamp' },
58
+ 'timestamp without time zone': { type: 'timestamp' }, // maybe not
59
59
  'oid': { type: 'string' },
60
60
  'boolean': { type: 'boolean' },
61
61
  // ARRAY: "string",
@@ -351,7 +351,7 @@ class ASTStep {
351
351
  }
352
352
  newAst.setTranslator(that);
353
353
  this.response = {
354
- ...that.problemResponse(),
354
+ ...that.problemResponse(), // these problems will by definition all be warnings
355
355
  ast: newAst,
356
356
  final: true,
357
357
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy",
3
- "version": "0.0.115",
3
+ "version": "0.0.116-dev231213173224",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",