@malloydata/malloy-tests 0.0.143-dev240416173709 → 0.0.143-dev240418162623

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.
package/package.json CHANGED
@@ -21,13 +21,13 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@jest/globals": "^29.4.3",
24
- "@malloydata/db-bigquery": "^0.0.143-dev240416173709",
25
- "@malloydata/db-duckdb": "^0.0.143-dev240416173709",
26
- "@malloydata/db-postgres": "^0.0.143-dev240416173709",
27
- "@malloydata/db-snowflake": "^0.0.143-dev240416173709",
28
- "@malloydata/db-trino": "^0.0.143-dev240416173709",
29
- "@malloydata/malloy": "^0.0.143-dev240416173709",
30
- "@malloydata/render": "^0.0.143-dev240416173709",
24
+ "@malloydata/db-bigquery": "^0.0.143-dev240418162623",
25
+ "@malloydata/db-duckdb": "^0.0.143-dev240418162623",
26
+ "@malloydata/db-postgres": "^0.0.143-dev240418162623",
27
+ "@malloydata/db-snowflake": "^0.0.143-dev240418162623",
28
+ "@malloydata/db-trino": "^0.0.143-dev240418162623",
29
+ "@malloydata/malloy": "^0.0.143-dev240418162623",
30
+ "@malloydata/render": "^0.0.143-dev240418162623",
31
31
  "jsdom": "^22.1.0",
32
32
  "luxon": "^2.4.0",
33
33
  "madge": "^6.0.0"
@@ -36,5 +36,5 @@
36
36
  "@types/jsdom": "^21.1.1",
37
37
  "@types/luxon": "^2.4.0"
38
38
  },
39
- "version": "0.0.143-dev240416173709"
39
+ "version": "0.0.143-dev240418162623"
40
40
  }
@@ -1,7 +1,7 @@
1
1
  -- to run
2
2
 
3
3
  -- cd test/snowflake
4
- -- snowsql -f uploadddate.sql
4
+ -- snowsql -f uploaddata.sql
5
5
 
6
6
 
7
7
  drop database malloytest;
@@ -388,12 +388,12 @@ describe.each(runtimes.runtimeList)('%s', (databaseName, runtime) => {
388
388
  `).malloyResultMatches(expressionModel, {a: 312});
389
389
  });
390
390
 
391
- test.when(!['postgres', 'snowflake'].includes(runtime.connection.name))(
391
+ test.when(!['postgres'].includes(runtime.connection.name))(
392
392
  'sql safe cast',
393
393
  async () => {
394
394
  await expect(`
395
395
  run: ${databaseName}.sql('SELECT 1 as one') -> { select:
396
- bad_date is '123':::date
396
+ bad_date is '12a':::date
397
397
  bad_number is 'abc':::number
398
398
  good_number is "312":::"integer"
399
399
  }