[SCM] PostGIS branch master updated. 3.6.0rc2-652-g65f051b33
git at osgeo.org
git at osgeo.org
Sun Jun 21 12:25:40 PDT 2026
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 65f051b339926d22ecfa5c2032d658178bb2a3e3 (commit)
from 92903a731a5dc918318e57c0746ba407d84eccdc (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 65f051b339926d22ecfa5c2032d658178bb2a3e3
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Sun Jun 21 23:24:17 2026 +0400
loader: quote id column in expected SQL
diff --git a/regress/loader/LongOptions.sql.expected b/regress/loader/LongOptions.sql.expected
index 59151e1a3..646eea3ce 100644
--- a/regress/loader/LongOptions.sql.expected
+++ b/regress/loader/LongOptions.sql.expected
@@ -1,7 +1,7 @@
SET CLIENT_ENCODING TO UTF8;
SET STANDARD_CONFORMING_STRINGS TO ON;
DROP TABLE IF EXISTS "loadedshp";
-CREATE TABLE IF NOT EXISTS "loadedshp" (gid serial PRIMARY KEY,
+CREATE TABLE IF NOT EXISTS "loadedshp" ("gid" serial PRIMARY KEY,
"the_geom" geometry(POINT,0));
INSERT INTO "loadedshp" (the_geom) VALUES ('01010000000000000000000000000000000000F03F');
INSERT INTO "loadedshp" (the_geom) VALUES ('01010000000000000000002240000000000000F0BF');
diff --git a/regress/loader/TestANALYZE.sql.expected b/regress/loader/TestANALYZE.sql.expected
index 10769aea0..d43a641c2 100644
--- a/regress/loader/TestANALYZE.sql.expected
+++ b/regress/loader/TestANALYZE.sql.expected
@@ -1,9 +1,9 @@
SET CLIENT_ENCODING TO UTF8;
SET STANDARD_CONFORMING_STRINGS TO ON;
BEGIN;
-CREATE TABLE "loadedshp" (gid serial,
+CREATE TABLE "loadedshp" ("gid" serial,
"the_geom" geometry(POINT,0));
-ALTER TABLE "loadedshp" ADD PRIMARY KEY (gid);
+ALTER TABLE "loadedshp" ADD PRIMARY KEY ("gid");
INSERT INTO "loadedshp" (the_geom) VALUES ('01010000000000000000000000000000000000F03F');
INSERT INTO "loadedshp" (the_geom) VALUES ('01010000000000000000002240000000000000F0BF');
INSERT INTO "loadedshp" (the_geom) VALUES ('01010000000000000000002240000000000000F0BF');
-----------------------------------------------------------------------
Summary of changes:
regress/loader/LongOptions.sql.expected | 2 +-
regress/loader/TestANALYZE.sql.expected | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list