Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit f65a0b7

Browse files
committed
chore: override default instead of always passing in True
1 parent 2d1c08b commit f65a0b7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

google/cloud/sqlalchemy_spanner/sqlalchemy_spanner.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,9 +529,11 @@ def post_create_table(self, table):
529529
return post_cmds
530530

531531
def visit_create_index(
532-
self, create, include_schema=False, include_table_schema=True, **kw
532+
self, create, include_schema=True, include_table_schema=True, **kw
533533
):
534-
text = super().visit_create_index(create, True, include_table_schema, **kw)
534+
text = super().visit_create_index(
535+
create, include_schema, include_table_schema, **kw
536+
)
535537
index = create.element
536538
if "spanner" in index.dialect_options:
537539
options = index.dialect_options["spanner"]

0 commit comments

Comments
 (0)