Ticket #205 (closed defect: fixed)

Opened 4 years ago

Last modified 3 years ago

[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

Changed 4 years ago by mcayland

  • milestone set to 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.

Changed 4 years ago by robe

  • milestone changed from postgis 1.4.0 to 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

Changed 4 years ago by mloskot

  • owner changed from pracine to mloskot
  • status changed from new to assigned

Changed 4 years ago by mloskot

  • status changed from assigned to closed
  • resolution set to fixed

Fixed in r4785

Changed 3 years ago by mloskot

  • summary changed from Non-standard use of literal to [wktraster] Non-standard use of literal
Note: See TracTickets for help on using tickets.