diff options
Diffstat (limited to 'libdbpp/testCore.cpp')
-rw-r--r-- | libdbpp/testCore.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdbpp/testCore.cpp b/libdbpp/testCore.cpp index 5029025..08b0e99 100644 --- a/libdbpp/testCore.cpp +++ b/libdbpp/testCore.cpp @@ -27,6 +27,7 @@ class Assert : public DB::HandleField { void string(const char * v, size_t len) override { (*this)(std::string(v, len)); } void timestamp(const boost::posix_time::ptime & v) override { (*this)(v); } void interval(const boost::posix_time::time_duration & v) override { (*this)(v); } + void blob(const Blob & v) override { (*this)(v); } void null() override { } template <typename D, typename dummy = int> |