aboutsummaryrefslogtreecommitdiff
path: root/common/view/driver.cxx
AgeCommit message (Collapse)AuthorFilesLines
2011-10-02Handle object pointers when comparing view and object data member typesBoris Kolpackov1-0/+23
Also issues an error if an object member associated with a view member is transient or inverse.
2011-10-02If query substituting placeholder is empty, pass true expression insteadBoris Kolpackov1-1/+1
This allows uniform usage of views both with and without any extra conditions. Also optimize some common cases so that we don't have useless WHERE TRUE clauses or (...) AND (TRUE) expressions.
2011-09-27Add support for associating tables with viewsBoris Kolpackov1-7/+31
2011-09-21Rework const object handlingBoris Kolpackov1-1/+1
Now objects are always loaded as non-const and the object cache in session treats all objects as non-const.
2011-09-20Change query syntax to use . for composite and -> for object pointer accessBoris Kolpackov1-5/+3
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 ().
2011-09-16Support for views; integrated partBoris Kolpackov1-36/+413
2011-09-05Support for views; native partBoris Kolpackov1-0/+185