postgis: use max float for no-op bbox token - closes #2158
This commit is contained in:
parent
c32b9b6788
commit
e3a456f846
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
DATASOURCE_PLUGIN(postgis_datasource)
|
DATASOURCE_PLUGIN(postgis_datasource)
|
||||||
|
|
||||||
const double postgis_datasource::FMAX = std::numeric_limits<double>::max();
|
const double postgis_datasource::FMAX = std::numeric_limits<float>::max();
|
||||||
const std::string postgis_datasource::GEOMETRY_COLUMNS = "geometry_columns";
|
const std::string postgis_datasource::GEOMETRY_COLUMNS = "geometry_columns";
|
||||||
const std::string postgis_datasource::SPATIAL_REF_SYS = "spatial_ref_system";
|
const std::string postgis_datasource::SPATIAL_REF_SYS = "spatial_ref_system";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue