Given a model ``Employee`` with a foreign key ``company`` pointing to a 
model called ``Company``, would the following example lock both the 
``Employee`` and ``Company`` rows that were selected?

employee = 
Employee.objects.select_for_update().select_related('company').get(pk=1)

Or, would only the ``Employee`` row be locked?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/Ps3gJ6JiSnMJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to