From f5d18a2701c05781f5236be96bec5e508082a14b Mon Sep 17 00:00:00 2001 From: Yuya Ebihara Date: Tue, 18 Feb 2025 09:33:21 +0900 Subject: [PATCH] Fix setup failure in TestDeltaLakeGlueMetastore --- .../deltalake/metastore/glue/TestDeltaLakeGlueMetastore.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/metastore/glue/TestDeltaLakeGlueMetastore.java b/plugin/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/metastore/glue/TestDeltaLakeGlueMetastore.java index 3922dc250f73..9ad575c1bd38 100644 --- a/plugin/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/metastore/glue/TestDeltaLakeGlueMetastore.java +++ b/plugin/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/metastore/glue/TestDeltaLakeGlueMetastore.java @@ -35,6 +35,7 @@ import io.trino.plugin.deltalake.DeltaLakeMetadata; import io.trino.plugin.deltalake.DeltaLakeMetadataFactory; import io.trino.plugin.deltalake.DeltaLakeModule; +import io.trino.plugin.deltalake.DeltaLakeSecurityModule; import io.trino.plugin.deltalake.metastore.DeltaLakeMetastoreModule; import io.trino.plugin.hive.NodeVersion; import io.trino.spi.NodeManager; @@ -128,6 +129,7 @@ public void setUp() // connector modules new DeltaLakeMetastoreModule(), new DeltaLakeModule(), + new DeltaLakeSecurityModule(), // test setup new FileSystemModule("test", context.getNodeManager(), context.getOpenTelemetry(), false));