-
Notifications
You must be signed in to change notification settings - Fork 13.9k
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
Add support for column specific fillna to viz #3066
Conversation
tests/core_tests.py
Outdated
@@ -19,6 +19,7 @@ | |||
from superset.models.sql_lab import Query | |||
from superset.views.core import DatabaseView | |||
from superset.connectors.sqla.models import SqlaTable | |||
from superset.viz import BaseViz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not needed
Coverage increased (+0.06%) to 69.439% when pulling 7458aa62b9a7b95b262de584958f7d606d2c0868 on xrmx:typedfillnae into 6045063 on apache:master. |
@mistercrunch any chance you can review this please? |
I'm not sure whether we want to systematically replace |
Maybe i wasn't clear but right now my visualization are not working with superset because NULL is not coerced to '0' (string) anymore as it was on caravel. So that fixes a regression for me :) Said that I don't think UPDATE: maybe i can use a preceding space before NULL to be more SQL-like |
Coverage increased (+0.06%) to 69.442% when pulling 9202d80f389b7368dbf3bc4d26392235cfaa2227 on xrmx:typedfillnae into 6045063 on apache:master. |
Coverage increased (+0.05%) to 69.342% when pulling 2097b55c46c8f2479caa5704922cd6857d829a31 on xrmx:typedfillnae into c944c61 on apache:master. |
1 similar comment
Coverage increased (+0.05%) to 69.342% when pulling 2097b55c46c8f2479caa5704922cd6857d829a31 on xrmx:typedfillnae into c944c61 on apache:master. |
@mistercrunch any hint on how we can move this forward? |
It make sense what @mistercrunch say. We should not use 0 and ‘NULL’ replace Simple and Difficult Problem. : ( |
Fix #3029