/// where retrieved classes will be stored.
void getAllClientClasses4(const ServerSelector& /* server_selector */,
ClientClassDictionary& /* client_classes */) {
- isc_throw(NotImplemented, NOT_IMPL_STR);
+ /// @todo Rather than throw, we do nothing. This allows CB to be used for
+ /// everything except classes.
+ /// isc_throw(NotImplemented, NOT_IMPL_STR);
}
/// @brief Sends query to retrieve modified client classes.
void getModifiedClientClasses4(const ServerSelector& /* server_selector */,
const boost::posix_time::ptime& /* modification_ts */,
ClientClassDictionary& /* client_classes */) {
- isc_throw(NotImplemented, NOT_IMPL_STR);
+ /// @todo Rather than throw, we do nothing. This allows CB to be used for
+ /// everything except classes.
+ /// isc_throw(NotImplemented, NOT_IMPL_STR);
}
// Make sure we catch values that are too big.
time_duration duration = hours(10) + minutes(14) + seconds(15);
- ptime day_too_far(date(3021, Jan, 21), duration);
+ ptime day_too_far(date(2038, Jan, 21), duration);
ASSERT_THROW_MSG(bind_array->addTimestamp(day_too_far), BadValue,
- "Time value is too large: 33168132855");
+ "Time value is too large: 2147681655");
// Now add reasonable day, US National Ice Cream day.
ptime nice_day(date(2021, Jul, 18), duration);