[postgis-tickets] r16326 - Use bigint in regress_lots_of_points* to make 32bit tuple alignment consistent with 64bit.
Darafei
komzpa at gmail.com
Tue Jan 16 02:47:59 PST 2018
Author: komzpa
Date: 2018-01-16 14:47:58 -0800 (Tue, 16 Jan 2018)
New Revision: 16326
Modified:
trunk/regress/regress_lots_of_3dpoints.sql
trunk/regress/regress_lots_of_points.sql
Log:
Use bigint in regress_lots_of_points* to make 32bit tuple alignment consistent with 64bit.
Modified: trunk/regress/regress_lots_of_3dpoints.sql
===================================================================
--- trunk/regress/regress_lots_of_3dpoints.sql 2018-01-16 20:54:14 UTC (rev 16325)
+++ trunk/regress/regress_lots_of_3dpoints.sql 2018-01-16 22:47:58 UTC (rev 16326)
@@ -1,6 +1,6 @@
CREATE TABLE "test" (
- "num" integer,
- "the_geom" geometry
+ "num" bigint,
+ "the_geom" geometry
);
INSERT INTO test (num, the_geom)
Modified: trunk/regress/regress_lots_of_points.sql
===================================================================
--- trunk/regress/regress_lots_of_points.sql 2018-01-16 20:54:14 UTC (rev 16325)
+++ trunk/regress/regress_lots_of_points.sql 2018-01-16 22:47:58 UTC (rev 16326)
@@ -8,7 +8,7 @@
--
CREATE TABLE "test" (
- "num" integer,
+ "num" bigint,
"the_geom" geometry
);
@@ -19,7 +19,7 @@
--
-COPY "test" FROM stdin;
+COPY "test" FROM stdin;
1 POINT(529.522339 509.260284)
2 POINT(395.286469 439.218109)
3 POINT(256.897461 933.949463)
More information about the postgis-tickets
mailing list