Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement select iterator utility function #1429

Merged
merged 2 commits into from
Oct 15, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: add assert_eq for row
  • Loading branch information
ever0de committed Oct 15, 2023
commit 9b8fac34d8b3973ad40355479a662af362abb06f
1 change: 1 addition & 0 deletions pkg/rust/examples/hello_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ mod hello_world {
.collect::<Vec<_>>();

assert_eq!(rows.len(), 1);
assert_eq!(&rows[0].name, "World");

println!("Hello {}!", rows[0].name); // Will always output "Hello World!"
}
Expand Down
Loading