-
Notifications
You must be signed in to change notification settings - Fork 419
"RuntimeError: no codec for array element type 17189" with $1::citext[] #82
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
Labels
Comments
Appears to be a bug. await conn.set_builtin_type_codec('citext', codec_name=25) |
elprans
added a commit
that referenced
this issue
Mar 15, 2017
Currently, asyncpg supports falling back to text I/O for types that do not have a registered codec. This commit extends this behaviour to arrays of such types. Additionally, add an explicit error for when the text I/O is attempted for a range or a composite type, as these are not supported yet. Fixes: #82.
elprans
added a commit
that referenced
this issue
Mar 15, 2017
Currently, asyncpg supports falling back to text I/O for types that do not have a registered codec. This commit extends this behaviour to arrays of such types. Additionally, add an explicit error for when the text I/O is attempted for a range or a composite type, as these are not supported yet. Fixes: #82.
elprans
added a commit
that referenced
this issue
Mar 15, 2017
Currently, asyncpg supports falling back to text I/O for types that do not have a registered codec. This commit extends this behaviour to arrays of such types. Additionally, add an explicit error for when the text I/O is attempted for a range or a composite type, as these are not supported yet. Fixes: #82.
elprans
added a commit
that referenced
this issue
Mar 15, 2017
Currently, asyncpg supports falling back to text I/O for types that do not have a registered codec. This commit extends this behaviour to arrays of such types. Additionally, add an explicit error for when the text I/O is attempted for a range or a composite type, as these are not supported yet. Fixes: #82.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
uvloop?: Yes
Steps to reproduce:
CREATE DATABASE test;
CREATE EXTENSION citext;
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: