From f68f80eb0068890f0a35bdadbf40a496ac922f91 Mon Sep 17 00:00:00 2001 From: Andrew Hutchings Date: Tue, 1 May 2018 20:56:52 +0100 Subject: [PATCH] MCOL-392 Add back accidental removal of function --- dbcon/execplan/aggregatecolumn.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dbcon/execplan/aggregatecolumn.h b/dbcon/execplan/aggregatecolumn.h index 028f1ee54..d1db7e5a4 100644 --- a/dbcon/execplan/aggregatecolumn.h +++ b/dbcon/execplan/aggregatecolumn.h @@ -416,6 +416,14 @@ public: evaluate(row, isNull); return TreeNode::getTimeIntVal(); } + /** + * F&E + */ + virtual int64_t getDatetimeIntVal(rowgroup::Row& row, bool& isNull) + { + evaluate(row, isNull); + return TreeNode::getDatetimeIntVal(); + } private: void evaluate(rowgroup::Row& row, bool& isNull);