You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by hy...@apache.org on 2014/04/21 13:13:03 UTC

[9/9] git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo into window_function

Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo into window_function


Project: http://git-wip-us.apache.org/repos/asf/tajo/repo
Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/39d4f2d7
Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/39d4f2d7
Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/39d4f2d7

Branch: refs/heads/window_function
Commit: 39d4f2d7ba1fd16aadbc2809d6278f49a9857f72
Parents: 1b3ec37 cbe1d6e
Author: Hyunsik Choi <hy...@apache.org>
Authored: Mon Apr 21 20:12:21 2014 +0900
Committer: Hyunsik Choi <hy...@apache.org>
Committed: Mon Apr 21 20:12:21 2014 +0900

----------------------------------------------------------------------
 CHANGES.txt                                     |  14 +
 pom.xml                                         |   1 +
 .../org/apache/tajo/catalog/DDLBuilder.java     |   1 -
 .../java/org/apache/tajo/client/TajoDump.java   |  18 +-
 tajo-common/pom.xml                             |  45 +++
 .../java/org/apache/tajo/conf/TajoConf.java     |   2 +-
 .../java/org/apache/tajo/util/StringUtils.java  |  68 ++++
 .../org/apache/tajo/util/TimeStampUtil.java     |  11 +-
 .../java/org/apache/tajo/util/VersionInfo.java  | 177 ++++++++++
 .../main/resources/tajo-version-info.properties |  26 ++
 .../org/apache/tajo/util/TestTimeStampUtil.java |  75 ++++
 .../tajo/engine/eval/BasicEvalNodeVisitor.java  |   4 +-
 .../tajo/engine/eval/BetweenPredicateEval.java  |  12 +
 .../apache/tajo/engine/eval/CaseWhenEval.java   |  14 +-
 .../org/apache/tajo/engine/eval/CastEval.java   |   4 +
 .../apache/tajo/engine/eval/EvalTreeUtil.java   |  68 +++-
 .../apache/tajo/engine/eval/FunctionEval.java   |   2 +-
 .../org/apache/tajo/engine/eval/NotEval.java    |   4 +
 .../org/apache/tajo/engine/eval/SignedEval.java |   4 +
 .../apache/tajo/engine/planner/LogicalPlan.java | 230 +++++++------
 .../engine/planner/global/GlobalPlanner.java    |  49 ++-
 .../java/org/apache/tajo/master/TajoMaster.java |   2 +-
 .../tajo/master/querymaster/SubQuery.java       |  18 +
 .../java/org/apache/tajo/worker/TajoWorker.java |   2 +-
 .../org/apache/tajo/client/TestTajoDump.java    |  46 +++
 .../tajo/engine/query/TestJoinBroadcast.java    |  14 +-
 .../tajo/engine/query/TestTablePartitions.java  |  50 +++
 .../tajo/master/TestExecutionBlockCursor.java   |   2 +-
 .../querymaster/TestQueryUnitStatusUpdate.java  |   8 +-
 .../org/apache/tajo/client/TestTajoDump.java    |  44 ---
 .../resources/queries/TestNetTypes/testJoin.sql |   2 +-
 .../queries/TestTablePartitions/case10.sql      |   1 +
 .../queries/TestTablePartitions/case11.sql      |   1 +
 .../queries/TestTablePartitions/case12.sql      |   7 +
 .../queries/TestTablePartitions/case13.sql      |  11 +
 .../queries/TestTablePartitions/case4.sql       |   1 +
 .../queries/TestTablePartitions/case5.sql       |   1 +
 .../queries/TestTablePartitions/case6.sql       |   1 +
 .../queries/TestTablePartitions/case7.sql       |   1 +
 .../queries/TestTablePartitions/case8.sql       |   1 +
 .../queries/TestTablePartitions/case9.sql       |   1 +
 .../testBroadcastSubquery2.result               |   2 +-
 .../results/TestTablePartitions/case10.result   |   7 +
 .../results/TestTablePartitions/case11.result   |   7 +
 .../results/TestTablePartitions/case12.result   |   7 +
 .../results/TestTablePartitions/case13.result   |   7 +
 .../results/TestTablePartitions/case4.result    |   7 +
 .../results/TestTablePartitions/case5.result    |   7 +
 .../results/TestTablePartitions/case6.result    |   7 +
 .../results/TestTablePartitions/case7.result    |   5 +
 .../results/TestTablePartitions/case8.result    |   7 +
 .../results/TestTablePartitions/case9.result    |   7 +
 .../results/TestTajoDump/testDump1.result       |   9 +-
 .../testBuildDDLForBaseTable.result             |   1 -
 .../testBuildDDLQuotedTableName2.result         |   1 -
 tajo-maven-plugins/pom.xml                      |  88 +++++
 .../tajo/maven/plugin/protoc/ProtocMojo.java    | 114 ++++++
 .../org/apache/tajo/maven/plugin/util/Exec.java | 117 +++++++
 .../tajo/maven/plugin/util/FileSetUtils.java    |  61 ++++
 .../plugin/versioninfo/VersionInfoMojo.java     | 344 +++++++++++++++++++
 .../org/apache/tajo/rpc/NettyServerBase.java    |   3 +
 .../apache/tajo/rpc/ProtoPipelineFactory.java   |   9 +-
 62 files changed, 1654 insertions(+), 206 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/39d4f2d7/CHANGES.txt
----------------------------------------------------------------------