Skip to content

For TriggerVersionField, why is the the version manually incremented? #225

Open
@bpartridge

Description

@bpartridge

Looking at:

@staticmethod
def _increment_version_number(obj):
old_value = get_revision_of_object(obj)
setattr(obj, obj._concurrencymeta.field.attname, int(old_value) + 1)
@staticmethod
def _wrap_model_methods(model):
super(TriggerVersionField, TriggerVersionField)._wrap_model_methods(model)
old_save = getattr(model, 'save')
setattr(model, 'save', model._concurrencymeta.field._wrap_save(old_save))
@staticmethod
def _wrap_save(func):
def inner(self, force_insert=False, force_update=False, using=None, **kwargs):
reload = kwargs.pop('refetch', False)
ret = func(self, force_insert, force_update, using, **kwargs)
TriggerVersionField._increment_version_number(self)

It appears that even if you're using a TriggerVersionField, the version is still incremented on the Python side on save. Wouldn't this cause an UPDATE, triggering the trigger, causing it to be incremented on the database (e.g. Postgres) side as well? Would this cause the effective version to increment by 2, rather than 1?

I suppose from a version comparison perspective, this isn't a huge problem; it would still satisfy the requirement that someone saving from the Django side compares the version they're editing to the version in the database, and if it's been increased at all, sound the alarms! But it seems like duplicative work, yea?

Is the reason perhaps because triggers might be uninstalled at any time, and it's just a safeguard to ensure that even if triggers go down the core Django functionality at least increments versions?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions