-
-
Notifications
You must be signed in to change notification settings - Fork 49
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
UUIDs Have 36 Characters Not 32 #132
Comments
Actually, django's UUIDField is implemented as a For this reason, I think it is natural that django-redshift-backend also implements UUIDs as 32-character strings. However, python's
|
[#132] use 36 length for UUIDFields to support including hyphens
This issue was implemented in PR #138. |
Subject: The mapping for a Django
UUIDField
to a Redshift field isvarchar(32)
. UUID's have 36 characters including the dashes.Problem
Procedure to reproduce the problem
UUIDField
Error logs / results
When using the folowing query to get the error from redshift
the following error is returned
Expected results
the migration results in a usable field
The text was updated successfully, but these errors were encountered: