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: Exposing Spanner client in dbapi connection #1100

Merged
merged 3 commits into from
Feb 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
Update comment
Co-authored-by: Knut Olav Løite <[email protected]>
  • Loading branch information
ankiaga and olavloite committed Feb 9, 2024
commit ed989d0922a9af4a64d373bdaf32fdd07413b097
2 changes: 1 addition & 1 deletion google/cloud/spanner_dbapi/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(self, instance, database=None, read_only=False):
@property
def spanner_client(self):
"""Client for interacting with Cloud Spanner API. This property exposes
the spanner client so that underlying methods could be accessed.
the spanner client so that underlying methods can be accessed.
"""
return self._instance._client

Expand Down