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

fix: raise Unimplemented error when creating temporary tables #159

Merged
merged 8 commits into from
Dec 1, 2021
5 changes: 5 additions & 0 deletions google/cloud/sqlalchemy_spanner/requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ def isolation_level(self):
def sequences(self):
return exclusions.closed()

@property
def temporary_tables(self):
"""target database supports temporary tables"""
IlyaFaer marked this conversation as resolved.
Show resolved Hide resolved
return exclusions.closed()
IlyaFaer marked this conversation as resolved.
Show resolved Hide resolved

def get_order_by_collation(self, _):
"""Get the default collation name.

Expand Down