Skip to content

Instantly share code, notes, and snippets.

@masayuki038
Created November 9, 2019 12:42
Show Gist options
  • Save masayuki038/556f26c5b14ddace0afa75903d5c6a93 to your computer and use it in GitHub Desktop.
Save masayuki038/556f26c5b14ddace0afa75903d5c6a93 to your computer and use it in GitHub Desktop.
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