Skip to content

Commit fa5fee5

Browse files
committed
Fix sfcgal regress failure - Delete 4326 entry before readding. Also use integer format instead of string format.
References #4210 git-svn-id: http://svn.osgeo.org/postgis/trunk@16968 b70326c6-7e19-0410-871a-916f4a2858ee
1 parent daf4103 commit fa5fee5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

regress/sfcgal/geography.sql

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
SET postgis.backend = 'sfcgal';
22

3+
DELETE FROM spatial_ref_sys where srid = 4326;
34
INSERT INTO spatial_ref_sys (srid, auth_name, auth_srid, srtext, proj4text)
45
VALUES (
5-
'4326',
6+
4326,
67
'EPSG',
7-
'4326',
8+
4326,
89
'GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]]',
910
'+proj=longlat +datum=WGS84 +no_defs'
1011
);

0 commit comments

Comments
 (0)