[postgis-tickets] [SCM] PostGIS branch main updated. 3.1.0rc1-274-g44fb5e6

git at osgeo.org git at osgeo.org
Tue Jul 6 09:34:31 PDT 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, main has been updated
       via  44fb5e6edcb59c9582e83d58e8f286b2bd20357e (commit)
      from  02ae48afb536bd302734fe8b342e312527f2d2f3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 44fb5e6edcb59c9582e83d58e8f286b2bd20357e
Author: Sandro Santilli <strk at kbt.io>
Date:   Tue Jul 6 18:24:49 2021 +0200

    Further reduce noise from topology tests using common layers

diff --git a/topology/test/hierarchy.sql b/topology/test/hierarchy.sql
index 7d9bc35..a953964 100644
--- a/topology/test/hierarchy.sql
+++ b/topology/test/hierarchy.sql
@@ -10,12 +10,12 @@ CREATE TABLE features.big_parcels (
 	feature_name varchar primary key, fid serial
 ) ;
 
-SELECT topology.AddTopoGeometryColumn('city_data', 'features',
+SELECT NULL FROM topology.AddTopoGeometryColumn('city_data', 'features',
 	'big_parcels', 'feature', 'POLYGON',
 	1 -- the land_parcles
 );
 
-SELECT AddGeometryColumn('features','big_parcels','the_geom',-1,'MULTIPOLYGON',2);
+SELECT NULL FROM AddGeometryColumn('features','big_parcels','the_geom',-1,'MULTIPOLYGON',2);
 
 INSERT INTO features.big_parcels(feature_name, feature) VALUES ('P1P2', -- Feature name
   topology.CreateTopoGeom(
@@ -49,7 +49,7 @@ CREATE TABLE features.big_streets (
 	feature_name varchar primary key, fid serial
 ) ;
 
-SELECT topology.AddTopoGeometryColumn('city_data', 'features',
+SELECT NULL FROM topology.AddTopoGeometryColumn('city_data', 'features',
 	'big_streets', 'feature', 'LINE',
 	3 -- the city_streets layer id
 );
@@ -82,12 +82,12 @@ CREATE TABLE features.big_signs (
 	feature_name varchar primary key, fid serial
 ) ;
 
-SELECT topology.AddTopoGeometryColumn('city_data', 'features',
+SELECT NULL FROM topology.AddTopoGeometryColumn('city_data', 'features',
 	'big_signs', 'feature', 'POINT',
 	2 -- the traffic_signs
 );
 
-SELECT AddGeometryColumn('features','big_signs','the_geom',0,'MULTIPOINT',2);
+SELECT NULL FROM AddGeometryColumn('features','big_signs','the_geom',0,'MULTIPOINT',2);
 
 INSERT INTO features.big_signs(feature_name, feature) VALUES ('S1S2', -- Feature name
   topology.CreateTopoGeom(
diff --git a/topology/test/regress/legacy_predicate_expected b/topology/test/regress/legacy_predicate_expected
index 5791e83..fb54a86 100644
--- a/topology/test/regress/legacy_predicate_expected
+++ b/topology/test/regress/legacy_predicate_expected
@@ -1,8 +1,3 @@
-4
-features.big_parcels.the_geom SRID:0 TYPE:MULTIPOLYGON DIMS:2 
-5
-6
-features.big_signs.the_geom SRID:0 TYPE:MULTIPOINT DIMS:2 
 POINT/POINT INTERSECTS
 S1|N1N6N14
 S3|N1N6N14
diff --git a/topology/test/regress/legacy_query_expected b/topology/test/regress/legacy_query_expected
index 3eab60e..0e2ee0b 100644
--- a/topology/test/regress/legacy_query_expected
+++ b/topology/test/regress/legacy_query_expected
@@ -1,8 +1,3 @@
-4
-features.big_parcels.the_geom SRID:0 TYPE:MULTIPOLYGON DIMS:2 
-5
-6
-features.big_signs.the_geom SRID:0 TYPE:MULTIPOINT DIMS:2 
 P1|1|MULTIPOLYGON(((9 6,9 14,9 22,21 22,21 14,21 6,9 6)))
 P2|2|MULTIPOLYGON(((21 6,21 14,21 22,35 22,35 14,35 6,21 6)))
 P3|3|MULTIPOLYGON(((35 6,35 14,35 22,47 22,47 14,47 6,35 6)))
diff --git a/topology/test/regress/topogeometry_type_expected b/topology/test/regress/topogeometry_type_expected
index 528e5cf..5f3018b 100644
--- a/topology/test/regress/topogeometry_type_expected
+++ b/topology/test/regress/topogeometry_type_expected
@@ -1,8 +1,3 @@
-4
-features.big_parcels.the_geom SRID:0 TYPE:MULTIPOLYGON DIMS:2 
-5
-6
-features.big_signs.the_geom SRID:0 TYPE:MULTIPOINT DIMS:2 
 GeometryType(traffic_signs)|MULTIPOINT
 ST_GeometryType(traffic_signs)|ST_MultiPoint
 GeometryType(city_streets)|MULTILINESTRING
diff --git a/topology/test/regress/topojson_expected b/topology/test/regress/topojson_expected
index 589b10e..2c918c9 100644
--- a/topology/test/regress/topojson_expected
+++ b/topology/test/regress/topojson_expected
@@ -1,8 +1,3 @@
-4
-features.big_parcels.the_geom SRID:0 TYPE:MULTIPOLYGON DIMS:2 
-5
-6
-features.big_signs.the_geom SRID:0 TYPE:MULTIPOINT DIMS:2 
 E27
 E28
 E29

-----------------------------------------------------------------------

Summary of changes:
 topology/test/hierarchy.sql                      | 10 +++++-----
 topology/test/regress/legacy_predicate_expected  |  5 -----
 topology/test/regress/legacy_query_expected      |  5 -----
 topology/test/regress/topogeometry_type_expected |  5 -----
 topology/test/regress/topojson_expected          |  5 -----
 5 files changed, 5 insertions(+), 25 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list