From f40f1ef3dc11b08beaf36535e9b56a849babd8a5 Mon Sep 17 00:00:00 2001 From: Christopher Swenson Date: Wed, 8 Nov 2023 10:53:51 -0600 Subject: [PATCH] Fix an oops --- packages/malloy/src/lang/ast/query-properties/nest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/malloy/src/lang/ast/query-properties/nest.ts b/packages/malloy/src/lang/ast/query-properties/nest.ts index d3c82857d..f299b2050 100644 --- a/packages/malloy/src/lang/ast/query-properties/nest.ts +++ b/packages/malloy/src/lang/ast/query-properties/nest.ts @@ -331,7 +331,7 @@ export class NestReference this.log('Cannot nest view from join'); return; } - super.makeEntry(fs); + return super.makeEntry(fs); } throw this.internalError('Unexpected namespace for nest'); }