Ticket #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: | trunk |
| 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
Note: See
TracTickets for help on using
tickets.
