diff options
Diffstat (limited to 'boost')
-rw-r--r-- | boost/oracle/date-time/driver.cxx | 4 | ||||
-rw-r--r-- | boost/oracle/date-time/test.hxx | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/boost/oracle/date-time/driver.cxx b/boost/oracle/date-time/driver.cxx index ca59757..a1a12fb 100644 --- a/boost/oracle/date-time/driver.cxx +++ b/boost/oracle/date-time/driver.cxx @@ -53,6 +53,10 @@ main (int argc, char* argv[]) o.times.push_back (min_date_time); o.times.push_back (ptime (max_date_time)); + o.times_d.push_back (ptime (date (2012, 6, 27), + time_duration (14, 17, 05, 0))); + o.times_d.push_back (not_a_date_time); + o.durations.push_back (time_duration (1, 2, 3, 123456)); o.durations.push_back (time_duration (-1, 2, 3)); o.durations.push_back (not_a_date_time); diff --git a/boost/oracle/date-time/test.hxx b/boost/oracle/date-time/test.hxx index 9699c5d..e7afe8f 100644 --- a/boost/oracle/date-time/test.hxx +++ b/boost/oracle/date-time/test.hxx @@ -26,6 +26,7 @@ struct object id == x.id && dates == x.dates && times == x.times && + times_d == x.times_d && durations == x.durations; } @@ -34,6 +35,8 @@ struct object std::vector<boost::gregorian::date> dates; std::vector<boost::posix_time::ptime> times; + #pragma db value_type("DATE") + std::vector<boost::posix_time::ptime> times_d; std::vector<boost::posix_time::time_duration> durations; }; |