mirror of
https://github.com/apache/superset.git
synced 2026-04-22 09:35:23 +00:00
[bugfix] handling UTF8 in Druid dimensions (#4943)
This commit is contained in:
committed by
GitHub
parent
e29beba023
commit
918399d4e2
@@ -1318,7 +1318,7 @@ class DruidDatasource(Model, BaseDatasource):
|
||||
str instead of an object.
|
||||
"""
|
||||
for col in groupby_cols:
|
||||
df[col] = df[col].fillna('<NULL>').astype(str)
|
||||
df[col] = df[col].fillna('<NULL>').astype('unicode')
|
||||
return df
|
||||
|
||||
def query(self, query_obj):
|
||||
|
||||
Reference in New Issue
Block a user