chore(spanner): add more samples#5958
Conversation
Adds another set of samples for the Getting Started Guide for Spanner Rust.
There was a problem hiding this comment.
Code Review
This pull request introduces several new Google Cloud Spanner examples for adding columns, querying data with a new column, and querying with parameters, supporting both Google Standard SQL and PostgreSQL dialects. It also updates the integration tests to execute these new samples. However, there are compilation errors in add_column.rs and pg_add_column.rs because set_statements expects a Vec<String> but is passed a Vec<&str>. Converting these string literals to owned Strings will resolve the compilation issues.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5958 +/- ##
=======================================
Coverage 97.74% 97.74%
=======================================
Files 240 240
Lines 60692 60692
=======================================
Hits 59321 59321
Misses 1371 1371 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Adds another set of samples for the Getting Started Guide for Spanner Rust.