io.prestosql.tests.hive.TestHiveMaterializedView Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.prestosql.tests.hive;
import io.prestosql.tempto.AfterTestWithContext;
import io.prestosql.tempto.BeforeTestWithContext;
import org.testng.annotations.Test;
import static io.prestosql.tempto.assertions.QueryAssert.Row.row;
import static io.prestosql.tempto.assertions.QueryAssert.assertThat;
import static io.prestosql.tests.TestGroups.STORAGE_FORMATS;
import static io.prestosql.tests.utils.QueryExecutors.onHive;
import static io.prestosql.tests.utils.QueryExecutors.onPresto;
public class TestHiveMaterializedView
extends HiveProductTest
{
private boolean isTestEnabled()
{
// MATERIALIZED VIEW is supported since Hive 3
return getHiveVersionMajor() >= 3;
}
@BeforeTestWithContext
public void setUp()
{
if (!isTestEnabled()) {
return;
}
onHive().executeQuery("" +
"CREATE TABLE test_materialized_view_table(x string) " +
"STORED AS ORC " +
"TBLPROPERTIES('transactional'='true')");
onHive().executeQuery("INSERT INTO test_materialized_view_table VALUES ('a'), ('a'), ('b')");
onHive().executeQuery("" +
"CREATE MATERIALIZED VIEW test_materialized_view_view " +
"PARTITIONED ON (x) " +
"STORED AS ORC " +
"AS SELECT x, count(*) c FROM test_materialized_view_table GROUP BY x");
}
@AfterTestWithContext
public void tearDown()
{
if (!isTestEnabled()) {
return;
}
onHive().executeQuery("DROP MATERIALIZED VIEW IF EXISTS test_materialized_view_view");
onHive().executeQuery("DROP TABLE IF EXISTS test_materialized_view_table");
}
@Test(groups = STORAGE_FORMATS)
public void testMetadata()
{
if (!isTestEnabled()) {
return;
}
assertThat(onPresto().executeQuery("SHOW TABLES"))
.contains(row("test_materialized_view_table"), row("test_materialized_view_view"));
assertThat(onPresto().executeQuery("SHOW COLUMNS FROM test_materialized_view_view"))
.containsOnly(
row("c", "bigint", "", ""),
row("x", "varchar", "partition key", ""));
}
@Test(groups = STORAGE_FORMATS)
public void testRead()
{
if (!isTestEnabled()) {
return;
}
assertThat(onPresto().executeQuery("SELECT x, c FROM test_materialized_view_view"))
.containsOnly(row("a", 2), row("b", 1));
assertThat(onPresto().executeQuery("SELECT x, c FROM test_materialized_view_view WHERE x = 'a'"))
.containsOnly(row("a", 2));
}
@Test(groups = STORAGE_FORMATS)
public void testWrite()
{
if (!isTestEnabled()) {
return;
}
assertThat(() -> onPresto().executeQuery("INSERT INTO test_materialized_view_view(x, c) VALUES ('x', 42)"))
.failsWithMessage("Cannot write to Hive materialized view");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy