Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: tabVersion <[email protected]>
  • Loading branch information
tabVersion committed Sep 10, 2024
1 parent a6f2ebf commit a833f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connector/src/parser/unified/kv_event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ where
Some(AdditionalColumnType::Key(_)) => self.access_key(&[&desc.name], &desc.data_type),
// hack here: Get the whole payload as a single column
// use a special mark "." as column name to represent the whole payload
Some(AdditionalColumnType::Payload(_)) => self.access_value(&[&"."], &desc.data_type),
Some(AdditionalColumnType::Payload(_)) => self.access_value(&["."], &desc.data_type),
None => self.access_value(&[&desc.name], &desc.data_type),
_ => unreachable!(),
}
Expand Down

0 comments on commit a833f96

Please sign in to comment.