aboutsummaryrefslogtreecommitdiff
path: root/data/sql/commit.sql
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2019-05-01 18:40:04 +0200
committerGitHub <noreply@github.com>2019-05-01 18:40:04 +0200
commiteeda5f7e5fd94a0cdcbf90df1f0b04a090f4c037 (patch)
tree86a8e2a7277351415e0836e37a975b81afd10b1c /data/sql/commit.sql
parente2b291c0c2a684313143eaf334fbf1161075b449 (diff)
parent8c025212b364cca181f1b436068516313032182c (diff)
downloadPROJ-eeda5f7e5fd94a0cdcbf90df1f0b04a090f4c037.tar.gz
PROJ-eeda5f7e5fd94a0cdcbf90df1f0b04a090f4c037.zip
Reduce database size (#1438)
Reduce database size
Diffstat (limited to 'data/sql/commit.sql')
-rw-r--r--data/sql/commit.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/sql/commit.sql b/data/sql/commit.sql
index 7aa91e8e..eb49828a 100644
--- a/data/sql/commit.sql
+++ b/data/sql/commit.sql
@@ -4,7 +4,7 @@ CREATE INDEX geodetic_crs_datum_idx ON geodetic_crs(datum_auth_name, datum_code)
CREATE INDEX geodetic_datum_ellipsoid_idx ON geodetic_datum(ellipsoid_auth_name, ellipsoid_code);
CREATE INDEX supersession_idx ON supersession(superseded_table_name, superseded_auth_name, superseded_code);
CREATE INDEX deprecation_idx ON deprecation(table_name, deprecated_auth_name, deprecated_code);
-CREATE INDEX helmert_transformation_idx ON helmert_transformation(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code);
+CREATE INDEX helmert_transformation_idx ON helmert_transformation_table(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code);
CREATE INDEX grid_transformation_idx ON grid_transformation(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code);
CREATE INDEX other_transformation_idx ON other_transformation(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code);
CREATE INDEX concatenated_operation_idx ON concatenated_operation(source_crs_auth_name, source_crs_code, target_crs_auth_name, target_crs_code);