You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by ha...@apache.org on 2016/06/20 19:21:00 UTC

incubator-quickstep git commit: Fix for cast issue.

Repository: incubator-quickstep
Updated Branches:
  refs/heads/decimal-type ec37551d8 -> 85dab23c7


Fix for cast issue.


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/85dab23c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/85dab23c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/85dab23c

Branch: refs/heads/decimal-type
Commit: 85dab23c79aa787f72dc98b75d729495180b937b
Parents: ec37551
Author: Hakan Memisoglu <ha...@apache.org>
Authored: Mon Jun 20 14:20:44 2016 -0500
Committer: Hakan Memisoglu <ha...@apache.org>
Committed: Mon Jun 20 14:20:44 2016 -0500

----------------------------------------------------------------------
 types/operations/unary_operations/NumericCastOperation.hpp | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/85dab23c/types/operations/unary_operations/NumericCastOperation.hpp
----------------------------------------------------------------------
diff --git a/types/operations/unary_operations/NumericCastOperation.hpp b/types/operations/unary_operations/NumericCastOperation.hpp
index 4aa2a2c..b77176d 100644
--- a/types/operations/unary_operations/NumericCastOperation.hpp
+++ b/types/operations/unary_operations/NumericCastOperation.hpp
@@ -256,8 +256,6 @@ class NumericCastOperation : public UnaryOperation {
         return makeUncheckedUnaryOperatorHelperForSourceNullability<FloatType>(type);
       case kDouble:
         return makeUncheckedUnaryOperatorHelperForSourceNullability<DoubleType>(type);
-      case kDecimal:
-        return makeUncheckedUnaryOperatorHelperForSourceNullability<DecimalType>(type);
       default:
         FATAL_ERROR("Unhandled type " << kTypeNames[type.getTypeID()]);
     }