We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Things go wrong when max_length is defined on a field as None.
max_length
None
This is the default for TextFields in django. I think it occurs on this line:
TextField
django-scrubber/django_scrubber/scrubbers.py
Line 56 in e7f2d5c
django.db.utils.ProgrammingError: column "none" does not exist LINE 1: ...), "address" = SUBSTR(MD5("client"."address"), 1, None), "va...
We may be able to look into this next week.
The text was updated successfully, but these errors were encountered:
I'll be looking into this this morning.
Sorry, something went wrong.
Good catch! This use-case totally slipped my mind. Should be a 1-liner + 1 test case. Or am I missing some other underlying subtlety?
You're right -- should be a basic one :)
Successfully merging a pull request may close this issue.
Description
Things go wrong when
max_length
is defined on a field asNone
.This is the default for
TextField
s in django. I think it occurs on this line:django-scrubber/django_scrubber/scrubbers.py
Line 56 in e7f2d5c
What I Did
We may be able to look into this next week.
The text was updated successfully, but these errors were encountered: