You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by li...@apache.org on 2016/12/16 08:18:21 UTC

[2/2] incubator-trafodion git commit: Merge Fix for [TRAFODION-2228]Add AES_ENCRYPT/AES_DECRYPT functions

Merge Fix for [TRAFODION-2228]Add AES_ENCRYPT/AES_DECRYPT functions


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

Branch: refs/heads/master
Commit: 3f91dbfb2357c1d4529e23d9b640bacdba33a6e5
Parents: b111430 e36b9fc
Author: Liu Ming <li...@apache.org>
Authored: Fri Dec 16 07:43:25 2016 +0000
Committer: Liu Ming <li...@apache.org>
Committed: Fri Dec 16 07:43:25 2016 +0000

----------------------------------------------------------------------
 core/conn/odbc/src/odbc/Common/QSData.cpp   |   7 +
 core/conn/odbc/src/odbc/Common/QSData.h     |  12 +
 core/sql/bin/SqlciErrors.txt                |   4 +
 core/sql/common/ComSSL.cpp                  |  49 ++
 core/sql/common/ComSSL.h                    |  60 +++
 core/sql/common/OperTypeEnum.h              |   3 +
 core/sql/exp/ExpErrorEnums.h                |   7 +
 core/sql/exp/ExpPackDefs.cpp                |   9 +
 core/sql/exp/exp_clause.cpp                 |  12 +
 core/sql/exp/exp_clause.h                   |   4 +-
 core/sql/exp/exp_function.cpp               | 175 ++++++-
 core/sql/exp/exp_function.h                 |  72 +++
 core/sql/generator/GenItemFunc.cpp          |  25 +-
 core/sql/nskgmake/common/Makefile           |   1 +
 core/sql/optimizer/BindItemExpr.cpp         |   5 +
 core/sql/optimizer/SynthType.cpp            |  53 +++
 core/sql/parser/ParKeyWords.cpp             |   2 +
 core/sql/parser/sqlparser.y                 |  24 +
 core/sql/regress/compGeneral/EXPECTED006.SB | 568 +++++++++++++++++++++++
 core/sql/regress/compGeneral/TEST006        | 108 +++++
 core/sql/sqlcomp/DefaultConstants.h         |   3 +
 core/sql/sqlcomp/nadefaults.cpp             |   1 +
 22 files changed, 1200 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/3f91dbfb/core/sql/bin/SqlciErrors.txt
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/3f91dbfb/core/sql/exp/exp_function.cpp
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/3f91dbfb/core/sql/optimizer/BindItemExpr.cpp
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/3f91dbfb/core/sql/parser/sqlparser.y
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/3f91dbfb/core/sql/sqlcomp/nadefaults.cpp
----------------------------------------------------------------------