Opened 17 years ago

Closed 17 years ago

Last modified 17 years ago

#53 closed defect (fixed)

WMS - wms_format..data_format column not long enough

Reported by: mschulz Owned by: christoph
Priority: trivial Milestone: 2.4.3 release
Component: administration Version: 2.4.2
Keywords: None Cc: astrid_emde

Description

Loading of a wms service from cubewerx failed due to the long image format names they provide: ERROR - column too short (50). Column data_format of table wms_format is defined as char varying (50) - they use format names with a length of around 70.

Change History (6)

comment:1 by anonymous, 17 years ago

Cc: None added
Component: administrationprint
Keywords: None added
Priority: minortrivial
Summary: Load WMS - wms_format..data_format column not long enoughNone
Type: defectenhancement
Version: 2.4.12.2.2

comment:2 by astrid_emde, 17 years ago

Cc: astrid_emde added; None removed
Component: printadministration
Summary: NoneWMS - wms_format..data_format column not long enough
Type: enhancementdefect
Version: 2.2.22.4.2

comment:3 by astrid_emde, 17 years ago

Milestone: Milestone 2.4.3 release

comment:4 by sven, 17 years ago

change column data_format in wms_format: set length from 50 to 100

comment:5 by sven, 17 years ago

Resolution: fixed
Status: newclosed

comment:6 by christoph, 17 years ago

PostgreSQL

ALTER TABLE wms_format ALTER COLUMN data_format TYPE varchar(100);

MySQL

ALTER TABLE wms_format CHANGE data_format data_format VARCHAR(100);

Note: See TracTickets for help on using tickets.