This is an automated email from the ASF dual-hosted git repository.

jhyde pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git.


    from 7e3abc5  [CALCITE-4587] Set "spark.driver.bindAddress" explicitly to 
avoid "BindException" thrown by Spark (Jiatao Tao)
     add 772413b  Refactor constructor of RexToLixTranslator.InputGetterImpl
     new b2e9e6c  [CALCITE-4564] Initialization context for non-static 
user-defined functions (UDFs)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../calcite/adapter/enumerable/EnumUtils.java      |   5 +-
 .../enumerable/EnumerableAggregateBase.java        |   6 +-
 .../calcite/adapter/enumerable/EnumerableCalc.java |  10 +-
 .../adapter/enumerable/EnumerableMatch.java        |  10 +-
 .../ReflectiveCallNotNullImplementor.java          |   4 +-
 .../calcite/adapter/enumerable/RexImpTable.java    |  32 ++++-
 .../adapter/enumerable/RexToLixTranslator.java     | 159 ++++++++++++++++++---
 .../apache/calcite/interpreter/AggregateNode.java  |  83 ++++++-----
 .../apache/calcite/interpreter/Interpreter.java    | 121 +---------------
 .../calcite/interpreter/JaninoRexCompiler.java     |  96 +++++++++----
 .../org/apache/calcite/interpreter/Scalar.java     |  10 ++
 .../calcite/interpreter/TableFunctionScanNode.java |  24 +++-
 .../org/apache/calcite/rel/core/Aggregate.java     |   2 +-
 .../rules/AggregateExpandWithinDistinctRule.java   |   2 +-
 .../org/apache/calcite/rex/RexCallBinding.java     |  20 ++-
 .../org/apache/calcite/rex/RexExecutorImpl.java    |   2 +-
 .../java/org/apache/calcite/rex/RexProgram.java    |   5 +
 .../org/apache/calcite/runtime/Enumerables.java    |   1 -
 .../apache/calcite/runtime/FunctionContexts.java   |  85 +++++++++++
 .../org/apache/calcite/schema/FunctionContext.java | 110 ++++++++++++++
 .../schema/impl/ReflectiveFunctionBase.java        |  27 +++-
 .../calcite/schema/impl/ScalarFunctionImpl.java    |   5 +-
 .../org/apache/calcite/util/BuiltInMethod.java     |   5 +
 .../main/java/org/apache/calcite/util/Util.java    |   4 +
 .../org/apache/calcite/test/InterpreterTest.java   | 114 +++++++++++----
 .../test/java/org/apache/calcite/test/UdfTest.java |  82 ++++++-----
 .../java/org/apache/calcite/tools/PlannerTest.java |   2 +-
 .../test/java/org/apache/calcite/util/Smalls.java  |  56 +++++++-
 .../apache/calcite/linq4j/tree/BlockBuilder.java   |  18 ++-
 .../apache/calcite/linq4j/tree/Expressions.java    |  37 ++++-
 .../apache/calcite/adapter/spark/SparkRules.java   |   9 +-
 31 files changed, 819 insertions(+), 327 deletions(-)
 create mode 100644 
core/src/main/java/org/apache/calcite/runtime/FunctionContexts.java
 create mode 100644 
core/src/main/java/org/apache/calcite/schema/FunctionContext.java

Reply via email to