1
|
#!/bin/bash
|
2
|
# :mode=transact-sql:
|
3
|
cd "$(dirname "$0")"
|
4
|
. ../../../lib/import.sh
|
5
|
|
6
|
map_table
|
7
|
psql <<'EOF'
|
8
|
SELECT set_col_types('"TREE"', ARRAY[
|
9
|
('*STATECD', 'integer')
|
10
|
, ('*UNITCD', 'integer')
|
11
|
, ('*COUNTYCD', 'integer')
|
12
|
, ('locationName', 'integer')
|
13
|
, ('*INVYR', 'integer')
|
14
|
, ('subplot', 'integer')
|
15
|
, ('authorEventCode', 'integer')
|
16
|
, ('*SPCD', 'integer')
|
17
|
]::col_cast[]);
|
18
|
|
19
|
-- ("*STATECD", "*UNITCD", "*COUNTYCD", "locationName", "*INVYR", "authorEventCode", "subplot", "*TREE", "*STATUSCD") is not ID
|
20
|
SELECT create_if_not_exists($$ALTER TABLE "TREE" ADD CONSTRAINT "TREE.ID" UNIQUE ("individualObservationID")$$);
|
21
|
|
22
|
SELECT create_if_not_exists($$CREATE INDEX "TREE.parent" ON "TREE" ("*STATECD", "*UNITCD", "*COUNTYCD", "locationName", "*INVYR", "authorEventCode", "subplot")$$);
|
23
|
SELECT cluster_once('"TREE"', '"TREE.parent"');
|
24
|
EOF
|
25
|
mk_derived
|