forked from D-Net/dnet-hadoop
Bug fix
This commit is contained in:
parent
ad07fbf053
commit
28272c1b0e
|
@ -119,7 +119,7 @@ drop table tmp purge;
|
|||
|
||||
ANALYZE TABLE indi_result_org_country_collab COMPUTE STATISTICS;
|
||||
|
||||
create TEMPORARY TABLE AS
|
||||
create TEMPORARY TABLE tmp AS
|
||||
select o.id organization, o.name, ro.project as project from organization o
|
||||
join organization_projects ro on o.id=ro.id where o.name is not null;
|
||||
|
||||
|
@ -130,6 +130,8 @@ from tmp as o1
|
|||
where o1.organization<>o2.organization and o1.name<>o2.name
|
||||
group by o1.name,o2.name, o1.organization, o2.organization;
|
||||
|
||||
drop table tmp purge;
|
||||
|
||||
ANALYZE TABLE indi_project_collab_org COMPUTE STATISTICS;
|
||||
|
||||
create TEMPORARY TABLE tmp AS
|
||||
|
|
Loading…
Reference in New Issue