Created
November 9, 2019 12:42
-
-
Save masayuki038/556f26c5b14ddace0afa75903d5c6a93 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public class AvroProjectTableScanRule extends RelOptRule { | |
static final AvroProjectTableScanRule INSTANCE = new AvroProjectTableScanRule(); | |
public AvroProjectTableScanRule() { | |
super(RelOptRule.operand( | |
LogicalProject.class, | |
RelOptRule.operand(AvroTableScan.class, RelOptRule.none()) | |
), "AvroProjectTableScanRule"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment