can not get postgis layers to work with beta2. This line looks suspicious in
mappostgis.c
line 1840
pos_opt = (pos_srid > pos_urid) ? pos_srid : pos_urid;
I think it is backwards, It should be
pos_opt = (pos_srid > pos_urid) ? pos_urid : pos_srid;
I applied this change locally and postgis worked again... I should back up. The
problem is that postgis doesn't trim the first 'using ...' from the SQL before
sending to PostgreSQL.
Reporter: akrherz@iastate.edu Date: 2005/11/28 - 05:44