Skip to content

Commit

Permalink
Replace DataType::Int64 with DataType::Serial in function.
Browse files Browse the repository at this point in the history
  • Loading branch information
shanicky committed Mar 16, 2023
1 parent 2c4e74d commit f844338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connector/src/source/nexmark/source/combined_event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub(crate) fn get_event_data_types(

if let Some(row_id_index) = row_id_index {
// _row_id
fields.insert(row_id_index, DataType::Int64);
fields.insert(row_id_index, DataType::Serial);
}

fields
Expand Down

0 comments on commit f844338

Please sign in to comment.