You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2016/10/06 15:21:42 UTC

[1/2] incubator-trafodion git commit: [TRAFODION-2194] Fix update stats core on tinyint unsigned column

Repository: incubator-trafodion
Updated Branches:
  refs/heads/master 8039cf1f6 -> 5cd718a2f


[TRAFODION-2194] Fix update stats core on tinyint unsigned column


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/8efaffa7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/8efaffa7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/8efaffa7

Branch: refs/heads/master
Commit: 8efaffa7ddea285cfa1f682a43e5bd371ea6537c
Parents: 8039cf1
Author: Dave Birdsall <db...@apache.org>
Authored: Wed Oct 5 23:49:07 2016 +0000
Committer: Dave Birdsall <db...@apache.org>
Committed: Wed Oct 5 23:49:07 2016 +0000

----------------------------------------------------------------------
 core/sql/exp/exp_conv.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/8efaffa7/core/sql/exp/exp_conv.cpp
----------------------------------------------------------------------
diff --git a/core/sql/exp/exp_conv.cpp b/core/sql/exp/exp_conv.cpp
index 18f527b..acfdd12 100644
--- a/core/sql/exp/exp_conv.cpp
+++ b/core/sql/exp/exp_conv.cpp
@@ -5146,7 +5146,7 @@ convDoIt(char * source,
                              diagsArea,
                              tempFlags) == ex_expr::EXPR_OK)
             {
-              *(unsigned short *)target = *(unsigned short *)source;
+              *(UInt8 *)target = *(UInt8 *)source;
             }
           else
             {


[2/2] incubator-trafodion git commit: Merge [TRAFODION-2194] PR 747 Fix update stats core on tinyint unsigned

Posted by db...@apache.org.
Merge [TRAFODION-2194] PR 747 Fix update stats core on tinyint unsigned


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/5cd718a2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/5cd718a2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/5cd718a2

Branch: refs/heads/master
Commit: 5cd718a2f03b2bf64f07a3a2eddc50e216852eab
Parents: 8039cf1 8efaffa
Author: Dave Birdsall <db...@apache.org>
Authored: Thu Oct 6 15:21:03 2016 +0000
Committer: Dave Birdsall <db...@apache.org>
Committed: Thu Oct 6 15:21:03 2016 +0000

----------------------------------------------------------------------
 core/sql/exp/exp_conv.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------