[SCM] PostGIS branch master updated. 3.6.0rc2-199-g29853175c
git at osgeo.org
git at osgeo.org
Wed Nov 12 22:17:19 PST 2025
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, master has been updated
via 29853175cee94a9800dec1cc2d2c4ce966c01ac2 (commit)
from b79acd4a709c4b9e6cbc63d71b043f137759efb3 (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 29853175cee94a9800dec1cc2d2c4ce966c01ac2
Author: Regina Obe <lr at pcorp.us>
Date: Thu Nov 13 00:59:29 2025 -0500
Revise fix_topogeometry_column tests to be
order independent
diff --git a/topology/test/regress/fix_topogeometry_columns.sql b/topology/test/regress/fix_topogeometry_columns.sql
index 4849b6bf5..dd3454db8 100644
--- a/topology/test/regress/fix_topogeometry_columns.sql
+++ b/topology/test/regress/fix_topogeometry_columns.sql
@@ -4,10 +4,9 @@ set client_min_messages to WARNING;
\i ../load_features.sql
\i ../more_features.sql
\i ../hierarchy.sql
-SELECT * FROM topology.layer;
SELECT topology.FixCorruptTopoGeometryColumn(schema_name, table_name, feature_column)
FROM topology.layer
-WHERE schema_name > '' AND table_name > '' AND feature_column > '';
+ORDER BY schema_name, table_name, feature_column;
SELECT topology.DropTopology('city_data');
DROP SCHEMA features CASCADE;
diff --git a/topology/test/regress/fix_topogeometry_columns_expected b/topology/test/regress/fix_topogeometry_columns_expected
index feab46c95..c17525cc7 100644
--- a/topology/test/regress/fix_topogeometry_columns_expected
+++ b/topology/test/regress/fix_topogeometry_columns_expected
@@ -1,13 +1,7 @@
-162|1|features|land_parcels|feature|3|0|
-162|2|features|traffic_signs|feature|1|0|
-162|3|features|city_streets|feature|2|0|
-162|4|features|big_parcels|feature|3|1|1
-162|5|features|big_streets|feature|2|1|3
-162|6|features|big_signs|feature|1|1|2
+0 rows updated for features.big_parcels.feature column to bigint id type
+0 rows updated for features.big_signs.feature column to bigint id type
+0 rows updated for features.big_streets.feature column to bigint id type
+0 rows updated for features.city_streets.feature column to bigint id type
0 rows updated for features.land_parcels.feature column to bigint id type
0 rows updated for features.traffic_signs.feature column to bigint id type
-0 rows updated for features.city_streets.feature column to bigint id type
-0 rows updated for features.big_parcels.feature column to bigint id type
-0 rows updated for features.big_streets.feature column to bigint id type
-0 rows updated for features.big_signs.feature column to bigint id type
Topology 'city_data' dropped
-----------------------------------------------------------------------
Summary of changes:
topology/test/regress/fix_topogeometry_columns.sql | 3 +--
topology/test/regress/fix_topogeometry_columns_expected | 14 ++++----------
2 files changed, 5 insertions(+), 12 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list