Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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;
import com.google.common.collect.ImmutableList;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import java.util.List;
import static io.prestosql.tempto.assertions.QueryAssert.Row.row;
import static io.prestosql.tempto.assertions.QueryAssert.assertThat;
import static io.prestosql.tempto.query.QueryExecutor.query;
import static io.prestosql.tests.TestGroups.PROFILE_SPECIFIC_TESTS;
import static io.prestosql.tests.TestGroups.TWO_HIVES;
import static java.lang.Math.pow;
import static java.lang.String.format;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;
public class TestTwoHives
{
private static final List CATALOGS = ImmutableList.of("hive1", "hive2");
@Test(groups = {TWO_HIVES, PROFILE_SPECIFIC_TESTS}, dataProvider = "catalogs")
public void testCreateTableAsSelectAndAnalyze(String catalog)
{
query(format("DROP TABLE IF EXISTS %s.default.nation", catalog));
assertThat(query(format("CREATE TABLE %s.default.nation AS SELECT * FROM tpch.tiny.nation", catalog)))
.containsOnly(row(25));
assertThat(query(format("SELECT count(*) FROM %s.default.nation", catalog)))
.containsOnly(row(25));
query(format("ANALYZE %s.default.nation", catalog));
assertThat(query(format("SHOW STATS FOR %s.default.nation", catalog)))
.containsOnly(
row("nationkey", null, 25.0, 0.0, null, "0", "24"),
row("name", 177.0, 25.0, 0.0, null, null, null),
row("regionkey", null, 5.0, 0.0, null, "0", "4"),
row("comment", 1857.0, 25.0, 0.0, null, null, null),
row(null, null, null, null, 25.0, null, null));
query(format("DROP TABLE %s.default.nation", catalog));
}
@Test(groups = {TWO_HIVES, PROFILE_SPECIFIC_TESTS})
public void testJoinFromTwoHives()
{
CATALOGS.forEach(catalog -> {
query(format("DROP TABLE IF EXISTS %s.default.nation", catalog));
assertThat(query(format("CREATE TABLE %s.default.nation AS SELECT * FROM tpch.tiny.nation", catalog)))
.containsOnly(row(25));
});
assertThat(query(format(
"SELECT count(*) FROM %s",
CATALOGS.stream()
.map(catalog -> format("%s.default.nation", catalog))
.collect(joining(",")))))
.containsOnly(row((int) pow(25, CATALOGS.size())));
CATALOGS.forEach(catalog -> query(format("DROP TABLE %s.default.nation", catalog)));
}
@DataProvider(name = "catalogs")
public static Object[][] catalogs()
{
return CATALOGS.stream()
.map(catalog -> new Object[] {catalog})
.collect(toList())
.toArray(new Object[][] {});
}
}