Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-06-15 | Get rid of C++11 deprecation warnings for auto_ptr, exception specs | Boris Kolpackov | 3 | -0/+126 | |
In particular, std::auto_ptr is no longer mapped in C++11. | |||||
2015-07-03 | Test custom id column name propagation to polymorphic-ref's | Boris Kolpackov | 1 | -1/+1 | |
2015-02-06 | Update copyright | Boris Kolpackov | 23 | -23/+23 | |
2014-12-15 | Fix bug in id-based custom view join of polymorphic objects | Boris Kolpackov | 2 | -0/+25 | |
See email from Mikhail.Tomilov@infotecs.ru/12-Dec-2014. | |||||
2014-08-29 | Pass non-const image to clone_image(), copy_image() | Boris Kolpackov | 3 | -1/+98 | |
This is necessary since some databases need to steal stuff from the original image (e.g., LOB descriptors in Oracle). | |||||
2014-06-03 | Support for VC12 (2013), initial work | Boris Kolpackov | 3 | -3/+12 | |
2013-07-08 | Add support for Visual Studio 2005 | Boris Kolpackov | 3 | -6/+12 | |
2013-06-21 | Add support for running tests in dynamic multi-database mode | Boris Kolpackov | 3 | -49/+39 | |
Only possible in the development build system at this stage. | |||||
2013-06-13 | Handle --database option directly in automake and VC++ projects | Boris Kolpackov | 3 | -9/+12 | |
2013-06-03 | Use database name in options and driver files (build part) | Boris Kolpackov | 3 | -3/+3 | |
This way we will be able to have several databases configured at the same time, which is needed for multi-database support testing. | |||||
2013-04-01 | Handle inverse member in base class of polymorphic hierarchy | Boris Kolpackov | 3 | -1/+183 | |
2013-02-12 | Use consistent types in object and view | Boris Kolpackov | 1 | -1/+1 | |
2013-02-09 | Update copyright year | Boris Kolpackov | 20 | -20/+20 | |
2013-02-09 | Shorten table prefix for Oracle | Boris Kolpackov | 3 | -3/+3 | |
2013-02-08 | Test change-tracking container and reuse inheritance | Boris Kolpackov | 2 | -3/+63 | |
2013-01-14 | Fix bug in handling polymorphic derived classes without any value members | Boris Kolpackov | 3 | -1/+98 | |
2012-10-29 | Fix incorrect relative paths | Boris Kolpackov | 3 | -12/+12 | |
2012-10-19 | Completion of prepared query support | Boris Kolpackov | 1 | -1/+1 | |
2012-10-08 | Fix bug in transient inheritance handling | Boris Kolpackov | 23 | -6/+3495 | |
Also test that we can handle it for objects, composite values, and views. | |||||
2012-09-17 | Remove unused local typedefs (GCC 4.8 warning) | Boris Kolpackov | 1 | -6/+1 | |
2012-09-16 | Add support for Visual Studio 2012 | Boris Kolpackov | 1 | -1/+3 | |
2012-04-23 | Polymorphic inheritance support | Boris Kolpackov | 2 | -1/+28 | |
2012-02-24 | C++11 support (pass --std ODB compiler option in build makefiles) | Boris Kolpackov | 1 | -0/+5 | |
2012-01-29 | Update copyright year | Boris Kolpackov | 3 | -3/+3 | |
2012-01-29 | Remove author field from file header | Boris Kolpackov | 3 | -3/+0 | |
Too much effort to maintain. | |||||
2011-10-26 | Shorten inheritance test table prefix to avoid name collisions | Constantin Michael | 1 | -1/+1 | |
2011-10-24 | Add t_ prefix to all the common tests that conflict with examples | Boris Kolpackov | 1 | -1/+1 | |
2011-10-21 | Remove common_ from all table_prefix arguments in common tests | Constantin Michael | 1 | -1/+1 | |
2011-09-20 | Change query syntax to use . for composite and -> for object pointer access | Boris Kolpackov | 1 | -2/+2 | |
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-09 | New templated query_columns architecture | Boris Kolpackov | 1 | -1/+2 | |
We also now use the correct separate "role"-base join approach instead of having a single merged join for each table. | |||||
2011-08-24 | Make tests use unique table prefixes | Boris Kolpackov | 1 | -1/+1 | |
2011-04-25 | Add support for abstract object types | Boris Kolpackov | 2 | -7/+82 | |
2011-04-25 | Reuse container traits from composite values | Boris Kolpackov | 2 | -2/+22 | |
2011-04-22 | Initial support for non-polymorphic inheritance | Boris Kolpackov | 4 | -0/+333 | |
Every class gets a separate table. New test: common/inheritance. |