Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void setUp()
assertQuery("SELECT count(*) FROM base_table2", "VALUES 3");
}

@Test
@Test(enabled = false) // TODO https://github.com/prestosql/presto/issues/5892
public void testCreateRefreshSelect()
{
Session session = getSession();
Expand Down Expand Up @@ -137,7 +137,7 @@ public void testCreateRefreshSelect()
assertUpdate("DROP MATERIALIZED VIEW materialized_view_join_part");
}

@Test
@Test(enabled = false) // TODO https://github.com/prestosql/presto/issues/5892
public void testDetectStaleness()
{
// Base tables and materialized views for staleness check
Expand Down Expand Up @@ -191,7 +191,7 @@ public void testDetectStaleness()
assertUpdate("DROP MATERIALIZED VIEW materialized_view_join_part_stale");
}

@Test
@Test(enabled = false) // TODO https://github.com/prestosql/presto/issues/5892
public void testSqlFeatures()
{
Session session = getSession();
Expand Down Expand Up @@ -246,7 +246,7 @@ public void testSqlFeatures()
assertUpdate("DROP MATERIALIZED VIEW materialized_view_subquery");
}

@Test
@Test(enabled = false) // TODO https://github.com/prestosql/presto/issues/5892
public void testReplace()
{
// Materialized view to test 'replace' feature
Expand All @@ -263,7 +263,7 @@ public void testReplace()
assertUpdate("DROP MATERIALIZED VIEW materialized_view_replace");
}

@Test
@Test(enabled = false) // TODO https://github.com/prestosql/presto/issues/5892
public void testNestedMaterializedViews()
{
// Base table and materialized views for nested materialized view testing
Expand Down