aboutsummaryrefslogtreecommitdiff
path: root/common/polymorphism/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/polymorphism/driver.cxx')
-rw-r--r--common/polymorphism/driver.cxx32
1 files changed, 32 insertions, 0 deletions
diff --git a/common/polymorphism/driver.cxx b/common/polymorphism/driver.cxx
index efda095..0c9bf1e 100644
--- a/common/polymorphism/driver.cxx
+++ b/common/polymorphism/driver.cxx
@@ -1821,6 +1821,38 @@ main (int argc, char* argv[])
t.commit ();
}
}
+
+ // Test 12: polymorphic objects with auto id.
+ //
+ {
+ using namespace test12;
+
+ base b (1);
+ derived d (2);
+
+ unsigned long id1, id2;
+
+ // Persist.
+ //
+ {
+ transaction t (db->begin ());
+ id1 = db->persist (b);
+ id2 = db->persist (static_cast<root&> (d));
+ t.commit ();
+ }
+
+ // Load.
+ //
+ {
+ transaction t (db->begin ());
+ auto_ptr<root> pb (db->load<root> (id1));
+ auto_ptr<root> pd (db->load<root> (id2));
+ t.commit ();
+
+ assert (*pb == b);
+ assert (*pd == d);
+ }
+ }
}
catch (const odb::exception& e)
{