We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Qfield Sync: 4.0.0-BETA8 v3.4.4
QField: 2.0.2 Beta3
QGIS: master 3.20
Take a project with a PostGIS layer with an "int" field (filled), make it offline and port it to QField.
In QField edit an existing feature and clear the "int" field.
Try synchronize basck to PostGIS with QFieldSync, it will fail as it will try to update the feature with something like
UPDATE "schemaname"."tablename" SET "columnname"='' WHERE "i...
instead of something like
UPDATE "schemaname"."tablename" SET "columnname"=NULL WHERE "i...
The text was updated successfully, but these errors were encountered:
The same thing happens on numeric and timestamp fields as well.
Sorry, something went wrong.
No branches or pull requests
Qfield Sync:
4.0.0-BETA8
v3.4.4
QField:
2.0.2 Beta3
QGIS:
master
3.20
Take a project with a PostGIS layer with an "int" field (filled), make it offline and port it to QField.
In QField edit an existing feature and clear the "int" field.
Try synchronize basck to PostGIS with QFieldSync, it will fail as it will try to update the feature with something like
UPDATE "schemaname"."tablename" SET "columnname"='' WHERE "i...instead of something like
UPDATE "schemaname"."tablename" SET "columnname"=NULL WHERE "i...The text was updated successfully, but these errors were encountered: