io.trino.sql.planner.planprinter.TableInfoSupplier 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.trino.sql.planner.planprinter;
import io.trino.Session;
import io.trino.execution.TableInfo;
import io.trino.metadata.CatalogInfo;
import io.trino.metadata.Metadata;
import io.trino.metadata.QualifiedObjectName;
import io.trino.metadata.TableProperties;
import io.trino.spi.connector.CatalogSchemaTableName;
import io.trino.spi.connector.ConnectorName;
import io.trino.sql.planner.plan.TableScanNode;
import java.util.Optional;
import java.util.function.Function;
import static java.util.Objects.requireNonNull;
public class TableInfoSupplier
implements Function
{
private final Metadata metadata;
private final Session session;
public TableInfoSupplier(Metadata metadata, Session session)
{
this.metadata = requireNonNull(metadata, "metadata is null");
this.session = requireNonNull(session, "session is null");
}
@Override
public TableInfo apply(TableScanNode node)
{
CatalogSchemaTableName tableName = metadata.getTableName(session, node.getTable());
TableProperties tableProperties = metadata.getTableProperties(session, node.getTable());
Optional connectorName = metadata.listCatalogs(session).stream()
.filter(catalogInfo -> catalogInfo.catalogName().equals(tableName.getCatalogName()))
.map(CatalogInfo::connectorName)
.map(ConnectorName::toString)
.findFirst();
QualifiedObjectName objectName = new QualifiedObjectName(tableName.getCatalogName(), tableName.getSchemaTableName().getSchemaName(), tableName.getSchemaTableName().getTableName());
return new TableInfo(connectorName, objectName, tableProperties.getPredicate());
}
}