Opened 5 years ago

Last modified 5 years ago

#4325 new defect

Solid flag is not serialized in either EWKT or EWKB

Reported by: komzpa Owned by: pramsey
Priority: medium Milestone: PostGIS Fund Me
Component: postgis Version: 2.4.x
Keywords: Cc:

Description

00:38:41 [kom] > select ST_IsSolid((ST_MakeSolid('BOX3D(0 0 0, 1 1 1)'::box3d::geometry)));
┌────────────┐
│ st_issolid │
├────────────┤
│ t          │
└────────────┘
(1 row)

Time: 0,932 ms
00:38:44 [kom] > select ST_IsSolid((ST_MakeSolid('BOX3D(0 0 0, 1 1 1)'::box3d::geometry)::text)::geometry);
┌────────────┐
│ st_issolid │
├────────────┤
│ f          │
└────────────┘
(1 row)

Time: 1,043 ms
00:38:48 [kom] > select ST_IsSolid(ST_AsEWKT(ST_MakeSolid('BOX3D(0 0 0, 1 1 1)'::box3d::geometry))::geometry);
┌────────────┐
│ st_issolid │
├────────────┤
│ f          │
└────────────┘
(1 row)

Time: 1,361 ms

Change History (2)

comment:1 by robe, 5 years ago

Milestone: PostGIS 2.5.2PostGIS 3.0.0

comment:2 by komzpa, 5 years ago

Milestone: PostGIS 3.0.0PostGIS Fund Me
Note: See TracTickets for help on using tickets.