filtering out deletedbyinference and invinsible results from accessroute

This commit is contained in:
Antonis Lempesis 2024-06-14 15:11:19 +03:00
parent e3f28338c1
commit 38636942c7
1 changed files with 2 additions and 1 deletions

View File

@ -65,4 +65,5 @@ DROP TABLE IF EXISTS ${stats_db_name}.result_accessroute purge;
CREATE TABLE IF NOT EXISTS ${stats_db_name}.result_accessroute STORED AS PARQUET as
select distinct substr(id,4) as id, accessroute from ${openaire_db_name}.result
lateral view explode (instance.accessright.openaccessroute) openaccessroute as accessroute;
lateral view explode (instance.accessright.openaccessroute) openaccessroute as accessroute
WHERE datainfo.deletedbyinference=false and datainfo.invisible = FALSE;