From 7967e98564c10e0945a318464d4bce109967d661 Mon Sep 17 00:00:00 2001 From: Michael Toy <66150587+mtoy-googly-moogly@users.noreply.github.com> Date: Thu, 16 Jan 2025 13:25:10 -0800 Subject: [PATCH] move explain parser to protected status (#2099) * re-export schema parser for meta-connection * make schemaForExplain protected --- packages/malloy-db-trino/src/trino_connection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/malloy-db-trino/src/trino_connection.ts b/packages/malloy-db-trino/src/trino_connection.ts index 64e535049..3f65754a9 100644 --- a/packages/malloy-db-trino/src/trino_connection.ts +++ b/packages/malloy-db-trino/src/trino_connection.ts @@ -447,7 +447,7 @@ export class PrestoConnection extends TrinoPrestoConnection { this.schemaFromExplain(explainResult, structDef); } - private schemaFromExplain( + protected schemaFromExplain( explainResult: MalloyQueryData, structDef: StructDef ) {