Opened 15 years ago

Closed 14 years ago

Last modified 14 years ago

#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 mcayland, 15 years ago

Milestone: postgis 1.4.0

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.

comment:2 by robe, 15 years ago

Milestone: postgis 1.4.0wktraster 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 mloskot, 14 years ago

Owner: changed from pracine to mloskot
Status: newassigned

comment:4 by mloskot, 14 years ago

Resolution: fixed
Status: assignedclosed

Fixed in r4785

comment:5 by mloskot, 14 years ago

Summary: Non-standard use of literal[wktraster] Non-standard use of literal
Note: See TracTickets for help on using tickets.