Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Remove st_force2d from postgres provider
- Loading branch information
Showing
with
1 addition
and
4 deletions.
-
+1
−4
src/providers/postgres/qgspostgresfeatureiterator.cpp
|
@@ -272,11 +272,8 @@ bool QgsPostgresFeatureIterator::declareCursor( const QString& whereClause ) |
|
|
|
|
|
if ( fetchGeometry ) |
|
|
{ |
|
|
query += QString( "%1(%2(%3%4),'%5')" ) |
|
|
query += QString( "%1(%2%3,'%4')" ) |
|
|
.arg( P->mConnectionRO->majorVersion() < 2 ? "asbinary" : "st_asbinary" ) |
|
|
.arg( P->mConnectionRO->majorVersion() < 2 ? "force_2d" |
|
|
: P->mConnectionRO->majorVersion() > 2 || P->mConnectionRO->minorVersion() > 0 ? "st_force2d" |
|
|
: "st_force_2d" ) |
|
|
.arg( P->quotedIdentifier( P->mGeometryColumn ) ) |
|
|
.arg( P->mSpatialColType == sctGeography ? "::geometry" : "" ) |
|
|
.arg( P->endianString() ); |
|
|