diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-09-20 11:53:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-09-20 11:53:04 +0200 |
commit | 18a040773c389de7be48111efc0f3cf7252ffc68 (patch) | |
tree | e68e5edde6a7f321e03172ecd5684d26644978c9 /common/relationship | |
parent | f70b64e2c4f9861d7013492b609212ed78e840f5 (diff) |
Change query syntax to use . for composite and -> for object pointer access
Also make non-inverse query columns act as both an object pointer and a
normal column. The latter allows us to use natural expressions such as
query<employee>::employer.is_null ().
Diffstat (limited to 'common/relationship')
-rw-r--r-- | common/relationship/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/relationship/driver.cxx b/common/relationship/driver.cxx index 3ce7e8c..e2ac749 100644 --- a/common/relationship/driver.cxx +++ b/common/relationship/driver.cxx @@ -105,7 +105,7 @@ main (int argc, char* argv[]) { transaction t (db->begin ()); - result r (db->query<aggr> (query::o1::str == "obj1")); + result r (db->query<aggr> (query::o1->str == "obj1")); assert (!r.empty ()); assert (r.begin ()->o1->id == a.o1->id); assert (size (r) == 1); |