mongoengine icon indicating copy to clipboard operation
mongoengine copied to clipboard

StringField (and potentially others) removing fields from mongo if set to default, if previously set.

Open Gentatsu opened this issue 4 years ago • 1 comments

I've a simple document with a StringField with a default of an empty string (""). When I retrieve a document, and save, it does not record it as a field in the db. This is the expected behaviour.

Annoyingly, though, there's a weird behaviour that I've observed. If I set the field to something other than the default, and save, it will record it in the db. Then if I set it to an empty string "" again, the field is deleted from the db. This wouldn't be a big deal, but when I use a QuerySet to do Whatever.objects(field=""), it returns nothing as QuerySets do not work on non-present fields in the db even if they are defaulted. They're separate issues, so I'm focusing on the first.

Mongoengine version is: 0.22.1 mongo version: 4.0.8

Gentatsu avatar Jan 08 '21 12:01 Gentatsu

I agree that this behavior is misleading, it's an historical one unfortunately so it's not straightforward to change but I'll probably look into this after merging https://github.com/MongoEngine/mongoengine/pull/2517 which is also a step in that direction

bagerard avatar May 23 '21 21:05 bagerard