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
UGH. so, this is because we are depending on the datapackage library which is hardcoded to treat any of these strings:
['null', 'none', 'nil', 'nan', '-']
as None when they occur as a value in a StringValue-typed column. In the context of returning query results from our servers, this is always wrong - we have the capacity to handle null results just fine explicitly.
Some work here is still necessary after Bryon's hotfix to ensure that there is no broader impact and, possibly, a simpler and more generalized solution.
In a SQL or SPARQL response, the literal string value
'NONE'
(case-insensitive) is converted into the python valueNone
:The text was updated successfully, but these errors were encountered: