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: add support for PG.OID in parameterized queries #1035

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

larkee
Copy link
Contributor

@larkee larkee commented Nov 13, 2023

This PR adds support for using PG.OID values in parameterized SELECT queries.

For example:

with database.snapshot() as snapshot:
  results = snapshot.execute_sql(
    "SELECT $1",
    params = {"p1": 123},
    param_types = {"p1": spanner.param_types.PG_OID})
    for row in results:
      print(row)

@larkee larkee requested review from a team as code owners November 13, 2023 23:50
@product-auto-label product-auto-label bot added size: s Pull request size is small. api: spanner Issues related to the googleapis/python-spanner API. labels Nov 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: spanner Issues related to the googleapis/python-spanner API. size: s Pull request size is small.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant