This is an automated email from the ASF dual-hosted git repository. dzamo pushed a commit to branch hadoop-impersonation-tests in repository https://gitbox.apache.org/repos/asf/drill.git
commit 209f3fdd6812c8584dbc12c1da6229378b1ac9a3 Author: James Turton <[email protected]> AuthorDate: Tue Aug 15 17:15:29 2023 +0200 Try moving TestImpersonationMetadata to EasyOutOfMemory run. --- .../org/apache/drill/exec/impersonation/TestImpersonationMetadata.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exec/java-exec/src/test/java/org/apache/drill/exec/impersonation/TestImpersonationMetadata.java b/exec/java-exec/src/test/java/org/apache/drill/exec/impersonation/TestImpersonationMetadata.java index ed25a6453a..13ecc38ccf 100644 --- a/exec/java-exec/src/test/java/org/apache/drill/exec/impersonation/TestImpersonationMetadata.java +++ b/exec/java-exec/src/test/java/org/apache/drill/exec/impersonation/TestImpersonationMetadata.java @@ -17,6 +17,7 @@ */ package org.apache.drill.exec.impersonation; +import org.apache.drill.categories.EasyOutOfMemory; import org.apache.drill.categories.SecurityTest; import org.apache.drill.categories.SlowTest; import org.apache.drill.categories.UnlikelyTest; @@ -51,7 +52,7 @@ import static org.junit.Assert.assertTrue; /** * Tests impersonation on metadata related queries as SHOW FILES, SHOW TABLES, CREATE VIEW, CREATE TABLE and DROP TABLE */ -@Category({SlowTest.class, SecurityTest.class}) +@Category({SlowTest.class, SecurityTest.class, EasyOutOfMemory.class}) public class TestImpersonationMetadata extends BaseTestImpersonation { private static final String user1 = "drillTestUser1"; private static final String user2 = "drillTestUser2";
