diff --git a/testing/trino-product-tests/src/main/java/io/trino/tests/product/hive/AbstractTestHiveViews.java b/testing/trino-product-tests/src/main/java/io/trino/tests/product/hive/AbstractTestHiveViews.java index 7c878d7ed9e05..d831cabb9379e 100644 --- a/testing/trino-product-tests/src/main/java/io/trino/tests/product/hive/AbstractTestHiveViews.java +++ b/testing/trino-product-tests/src/main/java/io/trino/tests/product/hive/AbstractTestHiveViews.java @@ -282,7 +282,7 @@ public void testNestedHiveViews() queryAssert -> queryAssert.containsOnly(row("KENYA"))); } - @Test + @Test(groups = HIVE_VIEWS) public void testSelectFromHiveViewWithoutDefaultCatalogAndSchema() { onHive().executeQuery("DROP VIEW IF EXISTS no_catalog_schema_view"); @@ -295,7 +295,7 @@ public void testSelectFromHiveViewWithoutDefaultCatalogAndSchema() .containsOnly(row(1L)); } - @Test + @Test(groups = HIVE_VIEWS) public void testTimestampHiveView() { onHive().executeQuery("DROP TABLE IF EXISTS timestamp_hive_table"); @@ -335,7 +335,7 @@ public void testTimestampHiveView() ).hasMessageContaining("timestamp(9) projected from query view at position 0 cannot be coerced to column [ts] of type timestamp(3) stored in view definition"); } - @Test + @Test(groups = HIVE_VIEWS) public void testCurrentUser() { onHive().executeQuery("DROP VIEW IF EXISTS current_user_hive_view");