forked from fmacias64/pdd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgprun.sql
More file actions
52 lines (28 loc) · 1.36 KB
/
Copy pathgprun.sql
File metadata and controls
52 lines (28 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
drop aggregate array_stack_int(integer[]);
drop aggregate array_stack_text(text[]);
CREATE ORDERED AGGREGATE array_stack_int(integer[]) (
SFUNC = array_cat,
STYPE = integer[]
);
CREATE ORDERED AGGREGATE array_stack_text(text[]) (
SFUNC = array_cat,
STYPE = text[]
);
ALTER TABLE sentences SET DISTRIBUTED BY (docid);
ALTER TABLE ddtables SET DISTRIBUTED BY (docid);
ALTER TABLE layout_align SET DISTRIBUTED BY (docid);
ALTER TABLE layout_fonts SET DISTRIBUTED BY (docid);
ALTER TABLE entity_formation SET DISTRIBUTED BY (docid);
ALTER TABLE entity_taxon SET DISTRIBUTED BY (docid);
ALTER TABLE entity_location SET DISTRIBUTED BY (docid);
ALTER TABLE entity_temporal SET DISTRIBUTED BY (docid);
ALTER TABLE relation_candidates SET DISTRIBUTED BY (docid);
ALTER TABLE relation_formation SET DISTRIBUTED BY (docid);
ALTER TABLE relation_formationtemporal SET DISTRIBUTED BY (docid);
ALTER TABLE relation_formationlocation SET DISTRIBUTED BY (docid);
ALTER TABLE relation_taxonomy SET DISTRIBUTED BY (docid);
ALTER TABLE relation_formation_global SET DISTRIBUTED BY (docid);
ALTER TABLE relation_formationtemporal_global SET DISTRIBUTED BY (docid);
ALTER TABLE relation_formationlocation_global SET DISTRIBUTED BY (docid);
ALTER TABLE relation_taxonomy_global SET DISTRIBUTED BY (docid);
ALTER TABLE ddtables SET DISTRIBUTED BY (docid);