Ticket #1061 (closed defect: fixed)
[raster] Using a CTE causes process to fail
| Reported by: | dustymugs | Owned by: | pracine |
|---|---|---|---|
| Priority: | blocker | Milestone: | PostGIS 2.0.0 |
| Component: | raster | Version: | trunk |
| Keywords: | Cc: |
Description
The following query causes the postgresql process to abort.
WITH foo AS ( SELECT ST_AddBand( ST_MakeEmptyRaster(10, 10, 10, 10, 2, 2, 0, 0,-1) , 1, '64BF', 0, 0 ) AS rast ) SELECT rast FROM foo
The crash relates to the ST_AddBand as the following does not cause an abort.
WITH foo AS ( SELECT ST_MakeEmptyRaster(10, 10, 10, 10, 2, 2, 0, 0,-1) AS rast ) SELECT rast FROM foo
Change History
Note: See
TracTickets for help on using
tickets.
