diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-10-23 10:28:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-23 10:28:05 +0200 |
| commit | aaa159247b5595b84c05f603bebc07201be335f4 (patch) | |
| tree | 9394fb47beeb183279d30faba6d531035e596f0a /data/sql/proj_db_table_defs.sql | |
| parent | 4fa0c250c125b8b034e0a17d2d03909dafdb6813 (diff) | |
| parent | 6351422cc2108072162f7b8cdff12916723ccc20 (diff) | |
| download | PROJ-aaa159247b5595b84c05f603bebc07201be335f4.tar.gz PROJ-aaa159247b5595b84c05f603bebc07201be335f4.zip | |
Merge pull request #2389 from rouault/wkt_parse_implict_compound_crs_esri
WKT1_ESRI: fix import and export of CompoundCRS
Diffstat (limited to 'data/sql/proj_db_table_defs.sql')
| -rw-r--r-- | data/sql/proj_db_table_defs.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/sql/proj_db_table_defs.sql b/data/sql/proj_db_table_defs.sql index 60a12209..ad3686d9 100644 --- a/data/sql/proj_db_table_defs.sql +++ b/data/sql/proj_db_table_defs.sql @@ -106,7 +106,7 @@ FOR EACH ROW BEGIN SELECT RAISE(ABORT, 'insert on usage violates constraint: extent must not be deprecated when object is not deprecated') WHERE EXISTS ( SELECT 1 FROM extent JOIN object_view o WHERE - NOT (o.table_name IN ('projected_crs', 'conversion') AND o.auth_name = 'ESRI') AND + NOT (o.table_name IN ('projected_crs', 'vertical_crs', 'vertical_datum', 'conversion') AND o.auth_name = 'ESRI') AND o.table_name = NEW.object_table_name AND o.auth_name = NEW.object_auth_name AND o.code = NEW.object_code AND |
