-
Notifications
You must be signed in to change notification settings - Fork 98
Comparing changes
Open a pull request
base repository: googleapis/python-spanner
base: v3.48.0
head repository: googleapis/python-spanner
compare: v3.49.0
- 10 commits
- 55 files changed
- 9 contributors
Commits on Aug 5, 2024
-
chore(spanner): Issue591# cursor.list tables() is returning views (#1162
) * chore(spanner): Issue#591 - Update dbapi cursor.list_tables() - add arg include_views - cursor.list_tables() return table and views by default - added another variable include_view - returns tables and views if include_view is set to True(default) - returns tables only if include_view is set to False - kept default value to True otherwise it will break any existing script * Revert "chore(spanner): Issue#591 - Update dbapi cursor.list_tables() - add arg include_views" This reverts commit e898d4ea0a69464d38f8c4d5c461a858558bd41b. * chore(spanner): Issue591# cursor.list_tables() is returning views as well - cursor.list_tables() returns table and views by default - added parameter include_views with default to True - If include_views is false, cursor.list_tables() would return only tables(table_type = 'BASE TABLE') * chore(spanner): Issue591# cursor.list tables() is returning views - fix lint failure * chore(spanner): Issue591# cursor.list tables() is returning views - Fixed unit test --------- Co-authored-by: Sri Harsha CH <57220027+harshachinta@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 32f337b - Browse repository at this point
Copy the full SHA 32f337bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a77146 - Browse repository at this point
Copy the full SHA 1a77146View commit details
Commits on Aug 6, 2024
-
feat(spanner): add samples for instance partitions (#1168)
* feat(spanner): add samples for instance partitions * PR feedback --------- Co-authored-by: Sri Harsha CH <57220027+harshachinta@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 55f83dc - Browse repository at this point
Copy the full SHA 55f83dcView commit details
Commits on Aug 19, 2024
-
feat(spanner): Add resource reference annotation to backup schedules (#…
…1176) * feat(spanner): Add support for Cloud Spanner Incremental Backups PiperOrigin-RevId: 657612329 Source-Link: googleapis/googleapis@e77b669 Source-Link: googleapis/googleapis-gen@0f66346 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMGY2NjM0NjlmM2VkY2MzNGM2MGMxYmJlMDE3MjdjYzVlYjk3MWM2MCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: Update gapic-generator-python to v1.18.5 PiperOrigin-RevId: 661268868 Source-Link: googleapis/googleapis@f7d214c Source-Link: googleapis/googleapis-gen@79a8411 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNzlhODQxMWJiZGIyNWE5ODNmYTNhYWU4YzBlMTQzMjdkZjEyOWY5NCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat(spanner): add edition field to the instance proto PiperOrigin-RevId: 662226829 Source-Link: googleapis/googleapis@eb87f47 Source-Link: googleapis/googleapis-gen@0fb784e Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMGZiNzg0ZTgyNjdmMDkzMWQyNGYxNTJlYzVmNjZlODA5YzJhMmVmYiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat(spanner): Add resource reference annotation to backup schedules docs(spanner): Add an example to filter backups based on schedule name PiperOrigin-RevId: 662402292 Source-Link: googleapis/googleapis@96facec Source-Link: googleapis/googleapis-gen@fe33f1c Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZmUzM2YxYzYxNDE1YWVmNGU3MGY0OTFkZmI4Nzg5YTY4ZThkOTA4MyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Sri Harsha CH <57220027+harshachinta@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for b503fc9 - Browse repository at this point
Copy the full SHA b503fc9View commit details -
test(spanner): Refactoring testdata (#1184)
* chore(spanner): Issue1180# [Refactoring] Create a copy of samples/samples/testdata in tests * created copy in tests/system and test/unit * updated references * chore(spanner): Issue1180# [Refactoring] Create a copy of samples/samples/testdata in tests * updated formatting (nox -s blacken) --------- Co-authored-by: Sri Harsha CH <57220027+harshachinta@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3c91a01 - Browse repository at this point
Copy the full SHA 3c91a01View commit details
Commits on Aug 26, 2024
-
chore(spanner): Issue#1143 - Update dependency (#1158)
* chore(spanner): Issue#1143 - Update dependency - Move grpc-interceptor to extras_required named testing * chore(spanner): Issue#1143 - Update dependency - Move grpc-interceptor to extras_required named testing * chore(spanner): Issue#1143 - Update dependency - add dependency 'testing' for pretest * chore(spanner): Issue#1143 - Update dependency - add dependency 'testing' for docs and docfx sessions * chore(spanner): Issue#1143 - Update dependency - Added "testing" dependency to owlbot.py - Fixed lint error --------- Co-authored-by: Sri Harsha CH <57220027+harshachinta@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 44434aa - Browse repository at this point
Copy the full SHA 44434aaView commit details
Commits on Aug 27, 2024
-
chore(spanner): Issue1178# [spanner_dbapi] While running a query that…
… contains just comment, it causes an IndexError exception (#1181) - returned ProgrammingError - Invalid statement
Configuration menu - View commit details
-
Copy full SHA for bd62d7c - Browse repository at this point
Copy the full SHA bd62d7cView commit details -
feat: Create a few code snippets as examples for using Spanner Graph …
…in Python (#1186) * Create a set of code snippets for using Graph on Cloud Spanner * Update to match gcloud/cli examples that exist in the docs * Fix update with graph query predicate syntax * Added an update step for allowing commit timestamps and changed to schema to not have that option * Fix styling using flake8 * Add tests for new Spanner Graph snippets * Fix some region tags that were inconsistent * Remove one unnecessary function and some redundant comments * Remove reference to allow_commit_timestamp * Fix lint issues in test file --------- Co-authored-by: Sri Harsha CH <57220027+harshachinta@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f886ebd - Browse repository at this point
Copy the full SHA f886ebdView commit details -
fix: JsonObject init when called on JsonObject of list (#1166)
Co-authored-by: Sri Harsha CH <57220027+harshachinta@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c4af6f0 - Browse repository at this point
Copy the full SHA c4af6f0View commit details
Commits on Sep 4, 2024
-
chore(main): release 3.49.0 (#1182)
* chore(main): release 3.49.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d2c0523 - Browse repository at this point
Copy the full SHA d2c0523View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v3.48.0...v3.49.0