This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new f3d8e8a Adds missing metric sum__SP_RUR_TOTL (#7452)
f3d8e8a is described below
commit f3d8e8a42443404834fecee0d8d8d1d135a60bb4
Author: Russell Jurney <[email protected]>
AuthorDate: Tue May 7 08:46:27 2019 -0700
Adds missing metric sum__SP_RUR_TOTL (#7452)
---
superset/data/world_bank.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/data/world_bank.py b/superset/data/world_bank.py
index 16aa0cb..94aa468 100644
--- a/superset/data/world_bank.py
+++ b/superset/data/world_bank.py
@@ -71,7 +71,7 @@ def load_world_bank_health_n_pop():
metrics = [
'sum__SP_POP_TOTL', 'sum__SH_DYN_AIDS', 'sum__SH_DYN_AIDS',
- 'sum__SP_RUR_TOTL_ZS', 'sum__SP_DYN_LE00_IN',
+ 'sum__SP_RUR_TOTL_ZS', 'sum__SP_DYN_LE00_IN', 'sum__SP_RUR_TOTL'
]
for m in metrics:
if not any(col.metric_name == m for col in tbl.metrics):