NULLs sometimes rendering as "None" and sometimes as "∅ null" #655
Replies: 1 comment 4 replies
-
If the Python representation of the data is Depending on how your adapter works, there might be other intermediate representations of the data, like a PyArrow scalar, and there would be some other casting going on to get to and from that intermediate representation. For reference, the code for the final formatter is here (and then the rich markup gets rendered): Before that formatting step, we're getting Python values from Arrow using |
Beta Was this translation helpful? Give feedback.
-
Hello,
I'm developing an adapter and noticed that sometimes NULLs are rendering as "None" and sometimes as "∅ null". I can't quite trace the cause, although I can write queries that change from "None" to "∅ null" by changing what rows are returned.
Any ideas what might be happening or places to look. I'm currently stumped. :)
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions