Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: does not show PostgreSQL datatype: cidr/macaddr in query results
  • Loading branch information
MorriganR authored and nyalldawson committed Jun 23, 2021
1 parent 38b4196 commit 497590e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -1073,6 +1073,9 @@ bool QgsPostgresProvider::loadFields()
fieldTypeName == QLatin1String( "geometry" ) ||
fieldTypeName == QLatin1String( "geography" ) ||
fieldTypeName == QLatin1String( "inet" ) ||
fieldTypeName == QLatin1String( "cidr" ) ||
fieldTypeName == QLatin1String( "macaddr" ) ||
fieldTypeName == QLatin1String( "macaddr8" ) ||
fieldTypeName == QLatin1String( "money" ) ||
fieldTypeName == QLatin1String( "ltree" ) ||
fieldTypeName == QLatin1String( "uuid" ) ||
Expand Down

0 comments on commit 497590e

Please sign in to comment.