incubator-wayang icon indicating copy to clipboard operation
incubator-wayang copied to clipboard

support other sources

Open github-actions[bot] opened this issue 1 year ago • 0 comments

support other sources

https://github.com/apache/incubator-wayang/blob/388cce9f8955c4c2e8df7b4094e4a7416340754f/wayang-api/wayang-api-sql/src/main/java/org/apache/wayang/api/sql/calcite/converter/WayangTableScanVisitor.java#L29



package org.apache.wayang.api.sql.calcite.converter;

import org.apache.wayang.api.sql.calcite.rel.WayangTableScan;
import org.apache.wayang.core.plan.wayangplan.Operator;
import org.apache.wayang.postgres.operators.PostgresTableSource;

import java.util.List;


//TODO: create tablesource with column types
//TODO: support other sources
public class WayangTableScanVisitor extends WayangRelNodeVisitor<WayangTableScan> {
    WayangTableScanVisitor(WayangRelConverter wayangRelConverter) {
        super(wayangRelConverter);

99bc2ee657704ab5291a8d9cad23691d2915d256

github-actions[bot] avatar Apr 26 '23 15:04 github-actions[bot]