@malloydata/malloy-tests 0.0.249-dev250326193717 → 0.0.249-dev250327002726

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.249-dev250326193717",
25
- "@malloydata/db-duckdb": "^0.0.249-dev250326193717",
26
- "@malloydata/db-postgres": "^0.0.249-dev250326193717",
27
- "@malloydata/db-snowflake": "^0.0.249-dev250326193717",
28
- "@malloydata/db-trino": "^0.0.249-dev250326193717",
29
- "@malloydata/malloy": "^0.0.249-dev250326193717",
30
- "@malloydata/malloy-tag": "^0.0.249-dev250326193717",
31
- "@malloydata/render": "^0.0.249-dev250326193717",
24
+ "@malloydata/db-bigquery": "^0.0.249-dev250327002726",
25
+ "@malloydata/db-duckdb": "^0.0.249-dev250327002726",
26
+ "@malloydata/db-postgres": "^0.0.249-dev250327002726",
27
+ "@malloydata/db-snowflake": "^0.0.249-dev250327002726",
28
+ "@malloydata/db-trino": "^0.0.249-dev250327002726",
29
+ "@malloydata/malloy": "^0.0.249-dev250327002726",
30
+ "@malloydata/malloy-tag": "^0.0.249-dev250327002726",
31
+ "@malloydata/render": "^0.0.249-dev250327002726",
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.249-dev250326193717"
41
+ "version": "0.0.249-dev250327002726"
42
42
  }
@@ -526,6 +526,19 @@ describe.each(runtimes.runtimeList)(
526
526
  ]);
527
527
  });
528
528
  });
529
+ // https://github.com/malloydata/malloy/issues/2206
530
+ test.skip('dereference of literal record (causes stack overflow at one point)', async () => {
531
+ await expect(`
532
+ run: ${conName}.sql("""
533
+ SELECT ${runtime.dialect.sqlLiteralString('Mark')} as first_name,
534
+ ${runtime.dialect.sqlLiteralString('Toy')} as last_name
535
+ """) extend {
536
+ dimension: owner is {first_name, last_name}
537
+ } -> {
538
+ group_by: x is owner.first_name
539
+ }
540
+ `).malloyResultMatches(runtime, {x: 'Mark'});
541
+ });
529
542
  }
530
543
  );
531
544