This is an automated email from the ASF dual-hosted git repository. dzamo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/drill.git
commit 9c01c03367265375520a7901109d9f900c66aa25 Author: James Turton <[email protected]> AuthorDate: Sat May 21 10:13:53 2022 +0200 [MINOR UPDATE] Disable TestJdbcPluginWithMSSQL when not on amd64. --- .../java/org/apache/drill/exec/store/jdbc/TestJdbcPluginWithMSSQL.java | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/storage-jdbc/src/test/java/org/apache/drill/exec/store/jdbc/TestJdbcPluginWithMSSQL.java b/contrib/storage-jdbc/src/test/java/org/apache/drill/exec/store/jdbc/TestJdbcPluginWithMSSQL.java index 68c6871261..13e7426f3b 100644 --- a/contrib/storage-jdbc/src/test/java/org/apache/drill/exec/store/jdbc/TestJdbcPluginWithMSSQL.java +++ b/contrib/storage-jdbc/src/test/java/org/apache/drill/exec/store/jdbc/TestJdbcPluginWithMSSQL.java @@ -46,6 +46,7 @@ import static org.junit.Assert.assertEquals; * JDBC storage plugin tests against MSSQL. */ @Category(JdbcStorageTest.class) +@EnabledIfSystemProperty(named = "os.arch", matches = "(amd64|x86_64)") public class TestJdbcPluginWithMSSQL extends ClusterTest { private static MSSQLServerContainer jdbcContainer;
