Opened 6 years ago

Closed 6 years ago

#4121 closed defect (fixed)

Minor error in PostGIS 2.4.5 dev Manual’s example

Reported by: dimishra Owned by: komzpa
Priority: low Milestone: PostGIS 2.4.5
Component: postgis Version: 2.4.x
Keywords: Postgis Documentation Cc:

Description

I have observed a minor error in PostGIS 2.4.5 dev Manual’s example on page 33/802 and 34/802.

Going by “gtest” table structure, insert statement should have column name “GID” instead of ‘ID’.

CREATE TABLE gtest ( gid serial primary key, name varchar(20) , geom geometry(LINESTRING) );

INSERT INTO gtest (ID, NAME, GEOM) VALUES (1, 'First Geometry',ST_GeomFromText ('LINESTRING(2 3,4 5,6 5,7 8)'));

Hope this makes sense!

Change History (2)

comment:1 by komzpa, 6 years ago

Owner: changed from pramsey to komzpa
Status: newassigned

comment:2 by komzpa, 6 years ago

Resolution: fixed
Status: assignedclosed

In 16643:

Sync column names in example.

Closes #4121

Note: See TracTickets for help on using tickets.