Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikeW committed Jan 24, 2024
1 parent a662034 commit 69f238b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connector/src/parser/debezium/avro_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ mod tests {
"#;
let schema = Schema::parse_str(test_schema_str).unwrap();
let columns = avro_schema_to_column_descs(&schema).unwrap();
for col in columns.iter() {
for col in &columns {
let dtype = col.column_type.as_ref().unwrap();
println!("name = {}, type = {:?}", col.name, dtype.type_name);
if col.name.contains("unconstrained") {
Expand Down

0 comments on commit 69f238b

Please sign in to comment.