TestPostgreSqlDistributedQueries.java
/*
* 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 com.facebook.presto.plugin.postgresql;
import com.facebook.airlift.testing.postgresql.TestingPostgreSqlServer;
import com.facebook.presto.testing.QueryRunner;
import com.facebook.presto.tests.AbstractTestDistributedQueries;
import com.google.common.collect.ImmutableMap;
import io.airlift.tpch.TpchTable;
import org.testng.annotations.AfterClass;
import org.testng.annotations.Test;
import java.io.IOException;
import static com.facebook.presto.plugin.postgresql.PostgreSqlQueryRunner.createPostgreSqlQueryRunner;
@Test
public class TestPostgreSqlDistributedQueries
extends AbstractTestDistributedQueries
{
private final TestingPostgreSqlServer postgreSqlServer;
public TestPostgreSqlDistributedQueries()
throws Exception
{
this.postgreSqlServer = new TestingPostgreSqlServer("testuser", "tpch");
}
@Override
protected QueryRunner createQueryRunner()
throws Exception
{
return createPostgreSqlQueryRunner(postgreSqlServer, ImmutableMap.of(), TpchTable.getTables());
}
@Override
protected boolean supportsViews()
{
return false;
}
@AfterClass(alwaysRun = true)
public final void destroy()
throws IOException
{
postgreSqlServer.close();
}
@Override
public void testInsert()
{
// no op -- test not supported due to lack of support for array types. See
// TestPostgreSqlIntegrationSmokeTest for insertion tests.
}
@Override
public void testDelete()
{
// Delete is currently unsupported
}
@Override
public void testUpdate()
{
// Updates are not supported by the connector
}
// PostgreSQL specific tests should normally go in TestPostgreSqlIntegrationSmokeTest
}