-
Notifications
You must be signed in to change notification settings - Fork 158
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
Cannot make db -> python value conversion working with custom SA columns #86
Comments
I was about to report the same issue (took me a while to track this down). As far as I can tell, the problem is that |
@asvetlov you seem to be the main maintainer of this project, could you maybe chime in on this issue? Is this (apart from this issue) a known weakness of aiopg and are there any plans to fix this? Or is there a technical reason that this is (currently) not possible to implement? |
Guys, honestly I did not try custom types yet, so I don't know where it fails. Maybe I'll find a time for investigation after fixing #20 |
Don't feel pressured to fix this as soon as possible! I was just curious what the status was on this issue since there has never been an "official" response to this issue. |
Have the same problem. process_bind_param() gets called, but process_result_value() never gets called |
Guys, have any news about this issue? May be it can be fixed? |
Nothing new I think. |
Better late than never #217 |
implemented in #217 |
The definition:
The calling code (abstract):
When
data
is processed, the value that corresponds to the custom Enum field is of typestr
, because theprocess_result_value()
never gets called. But for insert statements,process_bind_param()
is called as expected.The text was updated successfully, but these errors were encountered: