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
Hstore columns that contain keys that map to NULL values cause the hstore parser to fail. The cause of the problem is that the string representation of the hstore that we're using does not place quotes (") around NULL values like it does with all other values (come to think of it, this might also happen with integer values.) The string parsing method we're using to parse keys and values out of the hstore string representation fails if there are NULL values without quotes, because the parser tries (and fails) to remove the quotes.
Hstore columns that contain keys that map to
NULL
values cause the hstore parser to fail. The cause of the problem is that the string representation of the hstore that we're using does not place quotes ("
) around NULL values like it does with all other values (come to think of it, this might also happen with integer values.) The string parsing method we're using to parse keys and values out of the hstore string representation fails if there areNULL
values without quotes, because the parser tries (and fails) to remove the quotes.The problem code:
changegen/changegen/db.py
Lines 7 to 25 in fe32cc1
The text was updated successfully, but these errors were encountered: