@malloydata/db-postgres 0.0.44-dev230623160919 → 0.0.44-dev230623185845

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.
@@ -143,7 +143,7 @@ class PostgresConnection {
143
143
  schemas[tableURL] = inCache.schema;
144
144
  }
145
145
  else {
146
- errors[tableURL] = inCache.error;
146
+ errors[tableURL] = inCache.error || 'Unknown schema fetch error';
147
147
  }
148
148
  }
149
149
  return { schemas, errors };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-postgres",
3
- "version": "0.0.44-dev230623160919",
3
+ "version": "0.0.44-dev230623185845",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "prepublishOnly": "npm run build"
20
20
  },
21
21
  "dependencies": {
22
- "@malloydata/malloy": "^0.0.44-dev230623160919",
22
+ "@malloydata/malloy": "^0.0.44-dev230623185845",
23
23
  "@types/pg": "^8.6.1",
24
24
  "pg": "^8.7.1",
25
25
  "pg-query-stream": "4.2.3"