From 04dae232fa7dec33a4ff755b29ada9eedf107a4f Mon Sep 17 00:00:00 2001 From: okayhooni Date: Thu, 12 Mar 2026 14:55:45 +0900 Subject: [PATCH] use LEFT JOIN to cover table without comment --- ibis-server/app/model/metadata/trino.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis-server/app/model/metadata/trino.py b/ibis-server/app/model/metadata/trino.py index 4882e6d38..1070ff88b 100644 --- a/ibis-server/app/model/metadata/trino.py +++ b/ibis-server/app/model/metadata/trino.py @@ -79,7 +79,7 @@ def get_table_list(self) -> list[Table]: ON t.table_catalog = c.table_catalog AND t.table_schema = c.table_schema AND t.table_name = c.table_name - INNER JOIN + LEFT JOIN system.metadata.table_comments AS tc ON t.table_catalog = tc.catalog_name AND t.table_schema = tc.schema_name