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
i just got an error RuntimeError: unexpected attribute data type: 23, expected 26 @ File "asyncpg/protocol/codecs/base.pyx", line 155,
which confused me. actually it happens when i try to select whole record.
create table mytab (a int); insert into mytab values (1); select mytab from mytab;
it can't decode "record" and fails with "unexpected attribute data type: 23, expected 26"
The text was updated successfully, but these errors were encountered:
Ignore system and dropped attributes in composite types (#43)
38ad33b
That's an actual bug. I just pushed a fix. The error message should be better now too. Thanks for the report!
Sorry, something went wrong.
No branches or pull requests
i just got an error
RuntimeError: unexpected attribute data type: 23, expected 26
@ File "asyncpg/protocol/codecs/base.pyx", line 155,
which confused me. actually it happens when i try to select whole record.
create table mytab (a int);
insert into mytab values (1);
select mytab from mytab;
it can't decode "record" and fails with "unexpected attribute data type: 23, expected 26"
The text was updated successfully, but these errors were encountered: