@malloydata/render 0.0.196-dev241007190115 → 0.0.196-dev241007221852
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/dist/module/index.mjs +11619 -11377
- package/dist/module/index.umd.js +247 -247
- package/dist/register/register.mjs +1 -1
- package/dist/register/register.umd.js +1 -1
- package/dist/webcomponent/malloy-render.mjs +1 -1
- package/dist/webcomponent/malloy-render.umd.js +1 -1
- package/package.json +2 -2
|
@@ -49516,7 +49516,7 @@ class fbe extends sbe.AbstractParseTreeVisitor {
|
|
|
49516
49516
|
const n = [];
|
|
49517
49517
|
for (const i of e.joinList().joinDef()) {
|
|
49518
49518
|
const s = this.visit(i);
|
|
49519
|
-
s instanceof ie.Join && (n.push(s), s instanceof ie.ExpressionJoin
|
|
49519
|
+
s instanceof ie.Join && (n.push(s), s instanceof ie.ExpressionJoin ? (s.joinType = "many", s.joinOn === void 0 && this.contextError(e, "missing-on-in-join-many", "join_many: requires ON expression")) : s instanceof ie.KeyJoin && this.contextError(e, "foreign-key-in-join-many", "Foreign key join not legal in join_many:"));
|
|
49520
49520
|
}
|
|
49521
49521
|
const r = new ie.JoinStatement(n);
|
|
49522
49522
|
return r.extendNote({ blockNotes: this.getNotes(e.tags()) }), r;
|