com.facebook.presto.verifier.framework.CreateTableVerification 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 com.facebook.presto.verifier.framework;
import com.facebook.presto.sql.parser.SqlParser;
import com.facebook.presto.sql.tree.CreateTable;
import com.facebook.presto.sql.tree.QualifiedName;
import com.facebook.presto.sql.tree.ShowCreate;
import com.facebook.presto.sql.tree.Statement;
import com.facebook.presto.verifier.prestoaction.PrestoAction.ResultSetConverter;
import com.facebook.presto.verifier.prestoaction.QueryActions;
import com.facebook.presto.verifier.prestoaction.SqlExceptionClassifier;
import com.facebook.presto.verifier.rewrite.QueryRewriter;
import com.facebook.presto.verifier.source.SnapshotQueryConsumer;
import com.google.common.util.concurrent.ListeningExecutorService;
import java.sql.SQLException;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import static com.facebook.presto.sql.tree.ShowCreate.Type.TABLE;
import static java.util.Objects.requireNonNull;
public class CreateTableVerification
extends DdlVerification
{
public static final ResultSetConverter SHOW_CREATE_TABLE_CONVERTER = resultSet -> {
try {
return Optional.of(resultSet.getString("Create Table"));
}
catch (SQLException e) {
throw new RuntimeException(e);
}
};
private static final QualifiedName DUMMY_TABLE_NAME = QualifiedName.of("dummy");
private final QueryRewriter queryRewriter;
public CreateTableVerification(
SqlParser sqlParser,
QueryActions queryActions,
SourceQuery sourceQuery,
QueryRewriter queryRewriter,
SqlExceptionClassifier exceptionClassifier,
VerificationContext verificationContext,
VerifierConfig verifierConfig,
ListeningExecutorService executor,
SnapshotQueryConsumer snapshotQueryConsumer,
Map snapshotQueries)
{
super(sqlParser, queryActions, sourceQuery, exceptionClassifier, verificationContext, verifierConfig, SHOW_CREATE_TABLE_CONVERTER, executor, snapshotQueryConsumer, snapshotQueries);
this.queryRewriter = requireNonNull(queryRewriter, "queryRewriter is null");
}
@Override
protected QueryObjectBundle getQueryRewrite(ClusterType clusterType)
{
return queryRewriter.rewriteQuery(getSourceQuery().getQuery(clusterType), clusterType);
}
@Override
protected Statement getChecksumQuery(QueryObjectBundle queryBundle)
{
return new ShowCreate(TABLE, queryBundle.getObjectName());
}
@Override
protected boolean match(CreateTable controlObject, CreateTable testObject, QueryObjectBundle control, QueryObjectBundle test)
{
controlObject = new CreateTable(
DUMMY_TABLE_NAME,
controlObject.getElements(),
controlObject.isNotExists(),
controlObject.getProperties(),
controlObject.getComment());
testObject = new CreateTable(
DUMMY_TABLE_NAME,
testObject.getElements(),
testObject.isNotExists(),
testObject.getProperties(),
testObject.getComment());
return Objects.equals(controlObject, testObject);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy