com.facebook.presto.plugin.sqlserver.SqlServerClient 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.plugin.sqlserver;
import com.facebook.presto.plugin.jdbc.BaseJdbcClient;
import com.facebook.presto.plugin.jdbc.BaseJdbcConfig;
import com.facebook.presto.plugin.jdbc.DriverConnectionFactory;
import com.facebook.presto.plugin.jdbc.JdbcColumnHandle;
import com.facebook.presto.plugin.jdbc.JdbcConnectorId;
import com.facebook.presto.plugin.jdbc.JdbcIdentity;
import com.facebook.presto.plugin.jdbc.JdbcTableHandle;
import com.facebook.presto.spi.ConnectorSession;
import com.facebook.presto.spi.PrestoException;
import com.facebook.presto.spi.SchemaTableName;
import com.google.common.base.Joiner;
import com.microsoft.sqlserver.jdbc.SQLServerDriver;
import javax.inject.Inject;
import java.sql.Connection;
import java.sql.SQLException;
import static com.facebook.presto.plugin.jdbc.JdbcErrorCode.JDBC_ERROR;
import static java.lang.String.format;
public class SqlServerClient
extends BaseJdbcClient
{
private static final Joiner DOT_JOINER = Joiner.on(".");
@Inject
public SqlServerClient(JdbcConnectorId connectorId, BaseJdbcConfig config)
{
super(connectorId, config, "\"", new DriverConnectionFactory(new SQLServerDriver(), config));
}
@Override
protected void renameTable(JdbcIdentity identity, String catalogName, SchemaTableName oldTable, SchemaTableName newTable)
{
try (Connection connection = connectionFactory.openConnection(identity)) {
String sql = format(
"sp_rename %s, %s",
singleQuote(catalogName, oldTable.getSchemaName(), oldTable.getTableName()),
singleQuote(newTable.getTableName()));
execute(connection, sql);
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public void renameColumn(ConnectorSession session, JdbcIdentity identity, JdbcTableHandle handle, JdbcColumnHandle jdbcColumn, String newColumnName)
{
try (Connection connection = connectionFactory.openConnection(identity)) {
String sql = format(
"sp_rename %s, %s, 'COLUMN'",
singleQuote(handle.getCatalogName(), handle.getSchemaName(), handle.getTableName(), jdbcColumn.getColumnName()),
singleQuote(newColumnName));
execute(connection, sql);
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
private static String singleQuote(String... objects)
{
return singleQuote(DOT_JOINER.join(objects));
}
private static String singleQuote(String literal)
{
return "\'" + literal + "\'";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy