Skip to content

Commit

Permalink
Add missing test groups
Browse files Browse the repository at this point in the history
  • Loading branch information
losipiuk committed Jun 10, 2021
1 parent 9894b99 commit d679e14
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -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");
Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit d679e14

Please sign in to comment.