Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
flink/flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/source/abilities/SupportsProjectionPushDown.java /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
92 lines (86 sloc)
4 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Licensed to the Apache Software Foundation (ASF) under one | |
| * or more contributor license agreements. See the NOTICE file | |
| * distributed with this work for additional information | |
| * regarding copyright ownership. The ASF licenses this file | |
| * to you 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 org.apache.flink.table.connector.source.abilities; | |
| import org.apache.flink.annotation.PublicEvolving; | |
| import org.apache.flink.api.common.typeinfo.TypeInformation; | |
| import org.apache.flink.table.catalog.ResolvedSchema; | |
| import org.apache.flink.table.connector.Projection; | |
| import org.apache.flink.table.connector.source.ScanTableSource; | |
| import org.apache.flink.table.data.utils.ProjectedRowData; | |
| import org.apache.flink.table.types.DataType; | |
| /** | |
| * Enables to push down a (possibly nested) projection into a {@link ScanTableSource}. | |
| * | |
| * <p>Given the following SQL: | |
| * | |
| * <pre>{@code | |
| * CREATE TABLE t (i INT, r ROW < d DOUBLE, b BOOLEAN>, s STRING); | |
| * SELECT s, r.d FROM t; | |
| * }</pre> | |
| * | |
| * <p>In the above example, {@code r.d} and {@code s} are required fields. Other fields can be | |
| * skipped in a projection. Compared to table's schema, fields are reordered. | |
| * | |
| * <p>By default, if this interface is not implemented, a projection is applied in a subsequent | |
| * operation after the source. | |
| * | |
| * <p>For efficiency, a source can push a projection further down in order to be close to the actual | |
| * data generation. A projection is only selecting fields that are used by a query (possibly in a | |
| * different field order). It does not contain any computation. A projection can either be performed | |
| * on the fields of the top-level row only or consider nested fields as well (see {@link | |
| * #supportsNestedProjection()}). | |
| * | |
| * @see Projection | |
| * @see ProjectedRowData | |
| */ | |
| @PublicEvolving | |
| public interface SupportsProjectionPushDown { | |
| /** Returns whether this source supports nested projection. */ | |
| boolean supportsNestedProjection(); | |
| /** @deprecated Please implement {@link #applyProjection(int[][], DataType)} */ | |
| @Deprecated | |
| default void applyProjection(int[][] projectedFields) { | |
| throw new UnsupportedOperationException( | |
| "No implementation provided for SupportsProjectionPushDown. " | |
| + "Please implement SupportsProjectionPushDown#applyProjection(int[][], DataType)"); | |
| } | |
| /** | |
| * Provides the field index paths that should be used for a projection. The indices are 0-based | |
| * and support fields within (possibly nested) structures if this is enabled via {@link | |
| * #supportsNestedProjection()}. | |
| * | |
| * <p>In the example mentioned in {@link SupportsProjectionPushDown}, this method would receive: | |
| * | |
| * <ul> | |
| * <li>{@code [[2], [1]]} which is equivalent to {@code [["s"], ["r"]]} if {@link | |
| * #supportsNestedProjection()} returns false. | |
| * <li>{@code [[2], [1, 0]]} which is equivalent to {@code [["s"], ["r", "d"]]]} if {@link | |
| * #supportsNestedProjection()} returns true. | |
| * </ul> | |
| * | |
| * <p>Note: Use the passed data type instead of {@link ResolvedSchema#toPhysicalRowDataType()} | |
| * for describing the final output data type when creating {@link TypeInformation}. | |
| * | |
| * @param projectedFields field index paths of all fields that must be present in the physically | |
| * produced data | |
| * @param producedDataType the final output type of the source, with the projection applied | |
| */ | |
| default void applyProjection(int[][] projectedFields, DataType producedDataType) { | |
| applyProjection(projectedFields); | |
| } | |
| } |