@malloydata/db-snowflake 0.0.225-dev250113200903 → 0.0.225

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.
@@ -83,7 +83,7 @@ describe('db:Snowflake', () => {
83
83
  const sql = await runtime
84
84
  .loadModel("source: aircraft is snowflake.table('malloytest.aircraft')")
85
85
  .loadQuery(`run: aircraft -> {
86
- where: state != null
86
+ where: state is not null
87
87
  aggregate: cnt is count()
88
88
  group_by: state}`)
89
89
  .getSQL();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-snowflake",
3
- "version": "0.0.225-dev250113200903",
3
+ "version": "0.0.225",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,7 +21,7 @@
21
21
  "prepublishOnly": "npm run build"
22
22
  },
23
23
  "dependencies": {
24
- "@malloydata/malloy": "^0.0.225-dev250113200903",
24
+ "@malloydata/malloy": "^0.0.225",
25
25
  "generic-pool": "^3.9.0",
26
26
  "snowflake-sdk": "1.14.0",
27
27
  "toml": "^3.0.0"
@@ -66,7 +66,7 @@ describe('db:Snowflake', () => {
66
66
  .loadModel("source: aircraft is snowflake.table('malloytest.aircraft')")
67
67
  .loadQuery(
68
68
  `run: aircraft -> {
69
- where: state != null
69
+ where: state is not null
70
70
  aggregate: cnt is count()
71
71
  group_by: state}`
72
72
  )