diff options
Diffstat (limited to 'slicer/db/sqlSelectDeserializer.cpp')
-rw-r--r-- | slicer/db/sqlSelectDeserializer.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/slicer/db/sqlSelectDeserializer.cpp b/slicer/db/sqlSelectDeserializer.cpp index ec64545..3516265 100644 --- a/slicer/db/sqlSelectDeserializer.cpp +++ b/slicer/db/sqlSelectDeserializer.cpp @@ -2,7 +2,6 @@ #include "sqlSource.h" #include <sqlExceptions.h> #include <common.h> -#include <boost/algorithm/string/predicate.hpp> namespace Slicer { SqlSelectDeserializer::SqlSelectDeserializer(DB::SelectCommand & c, IceUtil::Optional<std::string> tc) : @@ -96,9 +95,7 @@ namespace Slicer { for (auto col = 0u; col < columnCount; col += 1) { const DB::Column & c = cmd[col]; if (!c.isNull()) { - auto fmpr = rmp->GetAnonChildRef([&c](const Slicer::HookCommon * h) { - return boost::iequals(c.name, h->name); - }); + auto fmpr = rmp->GetChildRef(c.name, NULL, false); if (fmpr) { auto fmp = fmpr.Child(); fmp->Create(); |