On Oct 15, 2009, at 8:01 AM, Szymon wrote:
> CONTEXT:  SQL statement "SELECT 1 FROM ONLY "public"."postac_postacie"
> x WHERE "id" OPERATOR(pg_catalog.=) $1 FOR SHARE OF x"

What this is doing is acquiring a shared lock on the row where id = $1  
(the parameter) on table postas_postacie (you probably could figure  
this out); this corresponds to application Postac, model class  
Postacie.  I'd examine the use cases of those models to see if  
different view methods are acquiring locks in a different order and  
creating a circular dependency.

--
-- Christophe Pettus
    x...@thebuild.com


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
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