Skip to content

Commit cc3a30a

Browse files
committed
django: remove SchemaEditor.quote_value() TODO
fixes googleapis#227
1 parent 3264f75 commit cc3a30a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

django_spanner/schema.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,7 @@ def add_index(self, model, index):
199199
super().add_index(model, index)
200200

201201
def quote_value(self, value):
202-
# TODO: a real implementation:
203-
# https://github.com/orijtech/django-spanner/issues/227
202+
# A more complete implementation isn't currently required.
204203
return str(value)
205204

206205
def _alter_field(self, model, old_field, new_field, old_type, new_type,

0 commit comments

Comments
 (0)