[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0rc1-430-gd026370

git at osgeo.org git at osgeo.org
Tue Aug 24 23:47:20 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, master has been updated
       via  d02637045e019c810cf0aeac3d95f3d255eff05f (commit)
      from  2e34b5345425065e56eee17e3a829e53bda5af67 (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 d02637045e019c810cf0aeac3d95f3d255eff05f
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Aug 25 02:46:13 2021 -0400

    Move geobuf specific tests out of tickets
    and into geobuf suite
    to prevent failure on systems not compiled with protobuf-c
    Closes #4983

diff --git a/regress/core/geobuf.sql b/regress/core/geobuf.sql
index 8bc9332..c1df58b 100644
--- a/regress/core/geobuf.sql
+++ b/regress/core/geobuf.sql
@@ -28,3 +28,11 @@ WITH geom AS (
 	SELECT 'TRIANGLE EMPTY'::geometry geom
 )
 select '#4399', 'ST_AsGeobuf', ST_AsGeobuf(geom.*)::text from geom;
+
+SELECT '#4916.a', ST_AsGeobuf(NULL::pg_class, 'g') over (order by b)
+FROM (VALUES ('POINT(0 0)'::geometry, 'A0006', 300),
+	         ('POINT(1 1)'::geometry, 'A0006', 302)) t(g, a, b);
+
+SELECT '#4916.b', ST_AsGeobuf(NULL::pg_class) over (order by b)
+FROM (VALUES ('POINT(0 0)'::geometry, 'A0006', 300),
+	         ('POINT(1 1)'::geometry, 'A0006', 302)) t(g, a, b);
diff --git a/regress/core/geobuf_expected b/regress/core/geobuf_expected
index e6c7e72..e8968bc 100644
--- a/regress/core/geobuf_expected
+++ b/regress/core/geobuf_expected
@@ -11,3 +11,7 @@ T8|GAAiGAoWChQIBiIGCAAaAggMIggIAhoECAwGCA==
 T9|EAMYACILCgkKBwgAGgMCBAY=
 T10|EAMYACILCgkKBwgAGgMCBAY=
 #4399|ST_AsGeobuf|\x180022260a0c0a0a08041a060000020201000a100a0e0806220a08041a060000020201000a040a020804
+#4916.a|
+#4916.a|
+#4916.b|
+#4916.b|
diff --git a/regress/core/tickets.sql b/regress/core/tickets.sql
index cc897fd..a84404f 100644
--- a/regress/core/tickets.sql
+++ b/regress/core/tickets.sql
@@ -1416,15 +1416,6 @@ WITH w AS (
   	           ('POINT(1 1)'::geometry, 'A0006', 302)) t(g, a, b)
 )
 SELECT '#4770.c', ST_AsText(g), s FROM w;
-
-SELECT '#4916.a', ST_AsGeobuf(NULL::pg_class, 'g') over (order by b)
-FROM (VALUES ('POINT(0 0)'::geometry, 'A0006', 300),
-	         ('POINT(1 1)'::geometry, 'A0006', 302)) t(g, a, b);
-
-SELECT '#4916.b', ST_AsGeobuf(NULL::pg_class) over (order by b)
-FROM (VALUES ('POINT(0 0)'::geometry, 'A0006', 300),
-	         ('POINT(1 1)'::geometry, 'A0006', 302)) t(g, a, b);
-
 ------
 
 
diff --git a/regress/core/tickets_expected b/regress/core/tickets_expected
index 454d49a..af581a8 100644
--- a/regress/core/tickets_expected
+++ b/regress/core/tickets_expected
@@ -458,7 +458,3 @@ ERROR:  LWGEOM_addpoint: Invalid offset
 #4770.b|POINT(1 1)|302
 #4770.c|POINT(0 0)|300
 #4770.c|MULTIPOINT(0 0,1 1)|602
-#4916.a|
-#4916.a|
-#4916.b|
-#4916.b|

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

Summary of changes:
 regress/core/geobuf.sql       | 8 ++++++++
 regress/core/geobuf_expected  | 4 ++++
 regress/core/tickets.sql      | 9 ---------
 regress/core/tickets_expected | 4 ----
 4 files changed, 12 insertions(+), 13 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list