github-actions[bot] opened a new issue, #307: URL: https://github.com/apache/incubator-wayang/issues/307
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 ```java 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 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
