@malloydata/malloy-tests 0.0.243 → 0.0.244-dev250317160224

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,14 +21,14 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@jest/globals": "^29.4.3",
24
- "@malloydata/db-bigquery": "^0.0.243",
25
- "@malloydata/db-duckdb": "^0.0.243",
26
- "@malloydata/db-postgres": "^0.0.243",
27
- "@malloydata/db-snowflake": "^0.0.243",
28
- "@malloydata/db-trino": "^0.0.243",
29
- "@malloydata/malloy": "^0.0.243",
30
- "@malloydata/malloy-tag": "^0.0.243",
31
- "@malloydata/render": "^0.0.243",
24
+ "@malloydata/db-bigquery": "^0.0.244-dev250317160224",
25
+ "@malloydata/db-duckdb": "^0.0.244-dev250317160224",
26
+ "@malloydata/db-postgres": "^0.0.244-dev250317160224",
27
+ "@malloydata/db-snowflake": "^0.0.244-dev250317160224",
28
+ "@malloydata/db-trino": "^0.0.244-dev250317160224",
29
+ "@malloydata/malloy": "^0.0.244-dev250317160224",
30
+ "@malloydata/malloy-tag": "^0.0.244-dev250317160224",
31
+ "@malloydata/render": "^0.0.244-dev250317160224",
32
32
  "events": "^3.3.0",
33
33
  "jsdom": "^22.1.0",
34
34
  "luxon": "^2.4.0",
@@ -38,5 +38,5 @@
38
38
  "@types/jsdom": "^21.1.1",
39
39
  "@types/luxon": "^2.4.0"
40
40
  },
41
- "version": "0.0.243"
41
+ "version": "0.0.244-dev250317160224"
42
42
  }
@@ -0,0 +1,13 @@
1
+ -- A simple malloy model representing a valid connection to the test presto container.
2
+ source: presto_models is presto.table("malloytest.aircraft_models") extend {
3
+ measure: model_count is count()
4
+
5
+ view: biggest_airplanes is {
6
+ group_by:
7
+ model,
8
+ seats
9
+ aggregate: model_count
10
+ order_by: seats DESC
11
+ limit: 20
12
+ }
13
+ }
@@ -0,0 +1,13 @@
1
+ -- A simple malloy model representing a valid connection to the test trino container.
2
+ source: trino_models is trino.table("malloytest.aircraft_models") extend {
3
+ measure: model_count is count()
4
+
5
+ view: biggest_airplanes is {
6
+ group_by:
7
+ model,
8
+ seats
9
+ aggregate: model_count
10
+ order_by: seats DESC
11
+ limit: 20
12
+ }
13
+ }