Skip to content

Commit 2a0f34f

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/cloud/sqlalchemy_spanner/sqlalchemy_spanner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,9 +529,9 @@ 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(create, include_schema, include_table_schema, **kw)
535535
index = create.element
536536
if "spanner" in index.dialect_options:
537537
options = index.dialect_options["spanner"]

0 commit comments

Comments
 (0)