#205 closed defect (fixed)
[wktraster] Non-standard use of literal
Reported by: | robe | Owned by: | mloskot |
---|---|---|---|
Priority: | medium | Milestone: | WKTRaster 0.1.6 |
Component: | raster | Version: | master |
Keywords: | Cc: |
Description
This is when deploying against 8.4RC1. 8.4 changed so they flag non-standard use in RAISE notices.
So I get this notice
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "raster_columns_pk" for table "raster_columns" WARNING: nonstandard use of \' in a string literal
I think its in your DropRasterColumn this line RAISE EXCEPTION 'column \'%\' not found in raster_columns table', column_name;
probably just need to change to
RAISE EXCEPTION 'column % not found in raster_columns table', column_name;
See #190
Change History (5)
comment:1 by , 15 years ago
Milestone: | → postgis 1.4.0 |
---|
comment:2 by , 15 years ago
Milestone: | postgis 1.4.0 → wktraster 0.1.6 |
---|
I thought I set the milestone to wkt. This is not PostGIS 1.4 its in the wktraster code base and didn't want to touch that without pierre/mlostkot permission
comment:3 by , 15 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:5 by , 15 years ago
Summary: | Non-standard use of literal → [wktraster] Non-standard use of literal |
---|
Yeah, this looks like the right fix to me - go for it :) I've also re-assigned to 1.4 as it's suitably trivial...
ATB,
Mark.