Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Dec 12, 2024
1 parent 51b0375 commit 7c99257
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
public class InsertIntoValuesAnalyzer extends AbstractBatchJobExecutor {
public static final List<RewriteJob> JOBS = jobs(
bottomUp(
new LogicalInlineToUnionOrOneRowRelation(),
new LogicalInlineTableToUnionOrOneRowRelation(),
new BindSink(),
new MergeProjects(),
// after bind olap table sink, the LogicalProject will be generated under LogicalOlapTableSink,
Expand Down Expand Up @@ -86,7 +86,7 @@ public List<Rule> buildRules() {
}
}

private static class LogicalInlineToUnionOrOneRowRelation extends OneRewriteRuleFactory {
private static class LogicalInlineTableToUnionOrOneRowRelation extends OneRewriteRuleFactory {
@Override
public Rule build() {
return logicalInlineTable().then(inlineTable -> {
Expand Down

0 comments on commit 7c99257

Please sign in to comment.