Skip to content

Commit

Permalink
Use the correct row for the before field for debezium sources
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde committed Dec 19, 2024
1 parent e052d5a commit 5c654ce
Show file tree
Hide file tree
Showing 3 changed files with 1,629 additions and 3,342 deletions.
2 changes: 1 addition & 1 deletion crates/arroyo-planner/src/physical.rs
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ impl DebeziumUnrollingStream {
timestamp_builder.append_value(timestamp.value(i));
}
"u" => {
take_indices.append_value((i + num_rows) as u32);
take_indices.append_value(i as u32);
is_retract_builder.append_value(true);
timestamp_builder.append_value(timestamp.value(i));
take_indices.append_value((i + num_rows) as u32);
Expand Down
Loading

0 comments on commit 5c654ce

Please sign in to comment.