aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-09-09 12:18:39 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-09-09 12:18:39 +0200
commitb3f53fedcabb90c0b7e9b8ab002b35aab0861336 (patch)
treece25ddde063802cf5505856dcb9fa24d07611dde
parent30fad82ff3afc8315dcea7988525fd057d07d9ca (diff)
New templated query_columns architecture
We also now use the correct separate "role"-base join approach instead of having a single merged join for each table.
-rw-r--r--common/inheritance/driver.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/inheritance/driver.cxx b/common/inheritance/driver.cxx
index 9bb8477..ce72863 100644
--- a/common/inheritance/driver.cxx
+++ b/common/inheritance/driver.cxx
@@ -149,7 +149,8 @@ main (int argc, char* argv[])
// Query condition with hidden members.
//
- assert (!db->query<object2> (b_query::str == "base o2o2o2").empty ());
+ assert (
+ !db->query<object2> (o2_query::base::str == "base o2o2o2").empty ());
// Query condition with referenced composite member in base class.
//