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/05/02 20:24:31 UTC

[3/3] incubator-trafodion git commit: Merge [TRAFODION-1955] PR 459 Compile-time JNI optimization

Merge [TRAFODION-1955] PR 459 Compile-time JNI optimization


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

Branch: refs/heads/master
Commit: 9b90f235961bebf8adc37faba99589c2585685e2
Parents: 56f3dbe cf755be
Author: Dave Birdsall <db...@apache.org>
Authored: Mon May 2 18:23:22 2016 +0000
Committer: Dave Birdsall <db...@apache.org>
Committed: Mon May 2 18:23:22 2016 +0000

----------------------------------------------------------------------
 core/sql/executor/ExExeUtil.h                   |   7 +-
 core/sql/executor/ExExeUtilGet.cpp              |  55 +++--
 core/sql/executor/HBaseClient_JNI.cpp           | 227 +++++++++++--------
 core/sql/executor/HBaseClient_JNI.h             |  66 +++---
 core/sql/exp/ExpHbaseInterface.cpp              |  39 +---
 core/sql/exp/ExpHbaseInterface.h                |  18 +-
 core/sql/generator/GenRelScan.cpp               |   2 +-
 core/sql/lib_mgmt/Makefile                      |   2 +-
 core/sql/optimizer/NATable.cpp                  |  15 +-
 core/sql/optimizer/NATable.h                    |   4 +-
 core/sql/optimizer/RelScan.h                    |   4 +-
 core/sql/sqlcomp/CmpSeabaseDDL.h                |   4 +-
 core/sql/sqlcomp/CmpSeabaseDDLcleanup.cpp       |  18 +-
 core/sql/sqlcomp/CmpSeabaseDDLtable.cpp         |  32 +--
 .../java/org/trafodion/sql/HBaseClient.java     |  35 ++-
 .../java/org/trafodion/sql/HTableClient.java    |  49 +---
 16 files changed, 291 insertions(+), 286 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/9b90f235/core/sql/lib_mgmt/Makefile
----------------------------------------------------------------------
diff --cc core/sql/lib_mgmt/Makefile
index 98ff9b6,b900325..d10bccd
--- a/core/sql/lib_mgmt/Makefile
+++ b/core/sql/lib_mgmt/Makefile
@@@ -23,9 -23,9 +23,9 @@@ INSTALL_LIBDIR := ${MY_SQROOT}/export/l
  INSTALL_SCRIPTSDIR := ${MY_SQROOT}/sql/scripts
  CP :=/bin/cp -f
  all:
 -	@$(MAVEN) package
 +	@$(MAVEN) package -DskipTests
  	mkdir -p ${INSTALL_LIBDIR}
- 	${CP} target/lib_mgmt-*.jar ${INSTALL_LIBDIR}/lib_mgmt.jar
+ 	${CP} target/lib_mgmt-${TRAFODION_VER}.jar ${INSTALL_LIBDIR}/lib_mgmt.jar
  	${CP} src/main/resources/init_libmgmt.sh ${INSTALL_SCRIPTSDIR}/
  	@chmod +x ${INSTALL_SCRIPTSDIR}/init_libmgmt.sh
  clean:

http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/9b90f235/core/sql/sqlcomp/CmpSeabaseDDLtable.cpp
----------------------------------------------------------------------