From 7391841a063328828621c8b70e02a81674686c97 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 18 Aug 2011 11:38:40 +0200 Subject: Fix custom recursive loading in post_load callback Before we called the callback while holding the statements locked. As a result, if the callback tried to load another object of this type, it failed. Now we unlock the statements (since we have completely loaded the object from ODB's point of view) and then call the callback. The callback test has been updated to test this situation. --- odb/pgsql/object-statements.ixx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'odb/pgsql/object-statements.ixx') diff --git a/odb/pgsql/object-statements.ixx b/odb/pgsql/object-statements.ixx index ea19baa..3955bf6 100644 --- a/odb/pgsql/object-statements.ixx +++ b/odb/pgsql/object-statements.ixx @@ -8,6 +8,22 @@ namespace odb namespace pgsql { // + // auto_unlock + // + inline object_statements_base::auto_unlock:: + auto_unlock (object_statements_base& s) + : s_ (s) + { + s_.unlock (); + } + + inline object_statements_base::auto_unlock:: + ~auto_unlock () + { + s_.lock (); + } + + // // auto_lock // template -- cgit v1.1