We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 5e8feb6 commit 2ad32f1Copy full SHA for 2ad32f1
src/server/qgswfsprojectparser.cpp
@@ -460,6 +460,12 @@ void QgsWFSProjectParser::describeFeatureType( const QString& aTypeName, QDomEle
460
geomElem.setAttribute( "type", "integer" );
461
else if ( attributeType == QVariant::Double )
462
geomElem.setAttribute( "type", "double" );
463
+ else if ( attributeType == QVariant::Bool )
464
+ geomElem.setAttribute( "type", "boolean" );
465
+ else if ( attributeType == QVariant::Date )
466
+ geomElem.setAttribute( "type", "date" );
467
+ else if ( attributeType == QVariant::DateTime )
468
+ geomElem.setAttribute( "type", "dateTime" );
469
else
470
geomElem.setAttribute( "type", "string" );
471
0 commit comments