You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default use_list parameter tells msgpack to unpack array to
Python's list which is not hashable and can not be used as a dict keys
and sets elements. Django expects the response rows to be tuples
because it will be used in python set() [1]
Need to make it configurable to let the user choose which type of rows
can be fetched from the database response.
It is set up to be converted to lists by default. Django expects row
type to be tuple. Also tuples tend to perform better than lists and
it is good if it can be configurable.
Closes#166
It is set up to be converted to lists by default. Django expects row
type to be tuple. Also tuples tend to perform better than lists and
it is good if it can be configurable.
Closes#166
It is set up to be converted to lists by default. Django expects row
type to be tuple. Also tuples tend to perform better than lists and
it is good if it can be configurable.
Closes#166
It is set up to be converted to lists by default. Django expects row
type to be tuple. Also tuples tend to perform better than lists and
it is good if it can be configurable.
Closes#166
By default
use_list
parameter tells msgpack to unpack array toPython's list which is not hashable and can not be used as a dict keys
and sets elements. Django expects the response rows to be tuples
because it will be used in python set() [1]
Need to make it configurable to let the user choose which type of rows
can be fetched from the database response.
[1] https://github.com/django/django/blob/stable/3.0.x/django/contrib/auth/management/__init__.py#L72
The text was updated successfully, but these errors were encountered: