summaryrefslogtreecommitdiff
path: root/libdbpp/testCore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libdbpp/testCore.cpp')
-rw-r--r--libdbpp/testCore.cpp1
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>