Skip to content

Commit

Permalink
Pipe: Fix the problem that pipe receiver fails to construct Relationa…
Browse files Browse the repository at this point in the history
…lInsertRow & RelationalInsertRows statements (#13847)
  • Loading branch information
luoluoyuyu authored Oct 21, 2024
1 parent 84fe96b commit b74fcc1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -553,11 +553,11 @@ public R visitInsertRow(InsertRowNode node, C context) {
}

public R visitRelationalInsertRow(RelationalInsertRowNode node, C context) {
return visitPlan(node, context);
return visitInsertRow(node, context);
}

public R visitRelationalInsertRows(RelationalInsertRowsNode node, C context) {
return visitPlan(node, context);
return visitInsertRows(node, context);
}

public R visitInsertTablet(InsertTabletNode node, C context) {
Expand Down

0 comments on commit b74fcc1

Please sign in to comment.