Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[spatialite] Field length and precision cannot be specified
Partial fix for #8481
  • Loading branch information
m-kuhn committed Oct 20, 2013
1 parent a3c30cb commit 249526b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/spatialite/qgsspatialiteprovider.cpp
Expand Up @@ -570,8 +570,8 @@ QgsSpatiaLiteProvider::QgsSpatiaLiteProvider( QString const &uri )
mNativeTypes
<< QgsVectorDataProvider::NativeType( tr( "Binary object (BLOB)" ), "BLOB", QVariant::ByteArray )
<< QgsVectorDataProvider::NativeType( tr( "Text" ), "TEXT", QVariant::String )
<< QgsVectorDataProvider::NativeType( tr( "Decimal number (double)" ), "FLOAT", QVariant::Double, 0, 20, 0, 20 )
<< QgsVectorDataProvider::NativeType( tr( "Whole number (integer)" ), "INTEGER", QVariant::LongLong, 0, 20 )
<< QgsVectorDataProvider::NativeType( tr( "Decimal number (double)" ), "FLOAT", QVariant::Double )
<< QgsVectorDataProvider::NativeType( tr( "Whole number (integer)" ), "INTEGER", QVariant::LongLong )
;
}

Expand Down

0 comments on commit 249526b

Please sign in to comment.