Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang committed Apr 23, 2024
1 parent 632a8a0 commit 4a0371a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connector/src/parser/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ mod tests {
.unwrap()
.get::<usize, Option<EnumString>>(1)
.unwrap();
assert_eq!("happy", got_new.value.as_str());
assert_eq!("happy", got_new.0.as_str());
client.execute("DROP TABLE person", &[]).await.unwrap();
client.execute("DROP TYPE mood", &[]).await.unwrap();
}
Expand Down

0 comments on commit 4a0371a

Please sign in to comment.