Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-09-17 | Provide quoted versions of view statement | Boris Kolpackov | 1 | -6/+14 | |
2013-09-17 | Handling of dynamic empty statements as result of versioning | Boris Kolpackov | 1 | -1/+1 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2012-01-29 | Update copyright year | Boris Kolpackov | 1 | -1/+1 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 1 | -1/+0 | |
Too much effort to maintain. | |||||
2011-11-03 | Use ODB_DATABASE_XXX macros instead DATABASE_XXX in ODB-compiled headers1.7.0.a1 | Boris Kolpackov | 1 | -11/+9 | |
DATABASE_XXX macros are not defined when building from VC++ project. | |||||
2011-11-01 | Fix bug in view column parsing | Boris Kolpackov | 1 | -13/+1 | |
2011-10-26 | Quote schema object identifiers for Oracle where necessary | Constantin Michael | 1 | -17/+82 | |
Oracle converts all alphabetical characters in unquoted schema object identifiers to uppercase. This behaviour cannot be disabled. | |||||
2011-10-24 | Add t_ prefix to all the common tests that conflict with examples | Boris Kolpackov | 1 | -13/+13 | |
2011-10-21 | Add test_ prefix to view test since it conflicts with view example | Boris Kolpackov | 1 | -13/+13 | |
2011-10-21 | Remove common_ from all table_prefix arguments in common tests | Constantin Michael | 1 | -13/+13 | |
2011-10-02 | Handle object pointers when comparing view and object data member types | Boris Kolpackov | 1 | -5/+14 | |
Also issues an error if an object member associated with a view member is transient or inverse. | |||||
2011-10-02 | If query substituting placeholder is empty, pass true expression instead | Boris Kolpackov | 1 | -2/+2 | |
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-27 | Add support for associating tables with views | Boris Kolpackov | 1 | -0/+32 | |
2011-09-21 | Use int instead of size_t for NULL-able value | Boris Kolpackov | 1 | -2/+2 | |
In case of nullable<size_t> the ODB compiler is unable to determine that the wrapped type is size_t. This results in 64-bit integer being stored and 32-bit being loaded. This interacts badly with PG for some reason. | |||||
2011-09-20 | Change query syntax to use . for composite and -> for object pointer access | Boris Kolpackov | 1 | -1/+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-16 | Support for views; integrated part | Boris Kolpackov | 1 | -29/+310 | |
2011-09-06 | Correct view test | Boris Kolpackov | 1 | -1/+0 | |
2011-09-05 | Support for views; native part | Boris Kolpackov | 1 | -0/+114 | |