You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wayang.apache.org by zk...@apache.org on 2021/09/07 08:14:37 UTC

[incubator-wayang] branch main updated (6ed0f46 -> c6fd120)

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

zkaoudi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git.


    from 6ed0f46  Merge pull request #24 from apache/WAYANG-37
     add 459486e  [WAYANG-38] Add the License Checker
     add 7c9caf0  [WAYANG-38] remove the dependency org.json because of conflict with license
     add d4a45fd  [WAYANG-38] notice added on JSONArray and JSONObject
     new c6fd120  Merge pull request #25 from apache/WAYANG-38

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:
 pom.xml                                            |  56 ++--
 wayang-api/wayang-api-scala-java/pom.xml           |   1 +
 wayang-commons/pom.xml                             |   8 +-
 wayang-commons/wayang-core/pom.xml                 |   8 +-
 .../apache/wayang/core/monitor/FileMonitor.java    |   3 +-
 .../optimizer/cardinality/CardinalityEstimate.java |   2 +-
 .../core/optimizer/costs/EstimationContext.java    |   2 +-
 .../wayang/core/optimizer/costs/LoadEstimate.java  |   2 +-
 .../wayang/core/optimizer/costs/LoadProfile.java   |   2 +-
 .../optimizer/costs/LoadProfileEstimators.java     |   2 +-
 .../optimizer/costs/SimpleEstimationContext.java   |   2 +-
 .../wayang/core/platform/AtomicExecution.java      |   4 +-
 .../wayang/core/platform/AtomicExecutionGroup.java |   2 +-
 .../wayang/core/platform/PartialExecution.java     |   2 +-
 .../org/apache/wayang/core/platform/Platform.java  |   2 +-
 .../core/profiling/CardinalityRepository.java      |   4 +-
 .../apache/wayang/core/profiling/ExecutionLog.java |   2 +-
 .../apache/wayang/core/util/JsonSerializable.java  |   2 +-
 .../apache/wayang/core/util/JsonSerializables.java |   5 +-
 .../apache/wayang/core/util/JsonSerializer.java    |   3 +-
 .../apache/wayang/core/util/json/JSONArray.java    | 138 ++++++++++
 .../apache/wayang/core/util/json/JSONObject.java   | 285 +++++++++++++++++++++
 .../wayang/core/platform/PartialExecutionTest.java |   2 +-
 .../test/SerializableDummyExecutionOperator.java   |   2 +-
 .../wayang/jdbc/operators/SqlToStreamOperator.java |   2 +-
 wayang-platforms/wayang-spark/pom.xml              |   1 +
 wayang-profiler/pom.xml                            |   1 +
 .../profiler/log/DynamicLoadProfileEstimators.java |  22 +-
 wayang-tests-integration/pom.xml                   |   1 +
 29 files changed, 505 insertions(+), 63 deletions(-)
 create mode 100644 wayang-commons/wayang-core/src/main/java/org/apache/wayang/core/util/json/JSONArray.java
 create mode 100644 wayang-commons/wayang-core/src/main/java/org/apache/wayang/core/util/json/JSONObject.java

[incubator-wayang] 01/01: Merge pull request #25 from apache/WAYANG-38

Posted by zk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zkaoudi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git

commit c6fd120108ba75c2f88b3e663f561fafa75845dd
Merge: 6ed0f46 d4a45fd
Author: Zoi Kaoudi <zk...@users.noreply.github.com>
AuthorDate: Tue Sep 7 10:14:32 2021 +0200

    Merge pull request #25 from apache/WAYANG-38
    
    [WAYANG-38] Licences validation

 pom.xml                                            |  56 ++--
 wayang-api/wayang-api-scala-java/pom.xml           |   1 +
 wayang-commons/pom.xml                             |   8 +-
 wayang-commons/wayang-core/pom.xml                 |   8 +-
 .../apache/wayang/core/monitor/FileMonitor.java    |   3 +-
 .../optimizer/cardinality/CardinalityEstimate.java |   2 +-
 .../core/optimizer/costs/EstimationContext.java    |   2 +-
 .../wayang/core/optimizer/costs/LoadEstimate.java  |   2 +-
 .../wayang/core/optimizer/costs/LoadProfile.java   |   2 +-
 .../optimizer/costs/LoadProfileEstimators.java     |   2 +-
 .../optimizer/costs/SimpleEstimationContext.java   |   2 +-
 .../wayang/core/platform/AtomicExecution.java      |   4 +-
 .../wayang/core/platform/AtomicExecutionGroup.java |   2 +-
 .../wayang/core/platform/PartialExecution.java     |   2 +-
 .../org/apache/wayang/core/platform/Platform.java  |   2 +-
 .../core/profiling/CardinalityRepository.java      |   4 +-
 .../apache/wayang/core/profiling/ExecutionLog.java |   2 +-
 .../apache/wayang/core/util/JsonSerializable.java  |   2 +-
 .../apache/wayang/core/util/JsonSerializables.java |   5 +-
 .../apache/wayang/core/util/JsonSerializer.java    |   3 +-
 .../apache/wayang/core/util/json/JSONArray.java    | 138 ++++++++++
 .../apache/wayang/core/util/json/JSONObject.java   | 285 +++++++++++++++++++++
 .../wayang/core/platform/PartialExecutionTest.java |   2 +-
 .../test/SerializableDummyExecutionOperator.java   |   2 +-
 .../wayang/jdbc/operators/SqlToStreamOperator.java |   2 +-
 wayang-platforms/wayang-spark/pom.xml              |   1 +
 wayang-profiler/pom.xml                            |   1 +
 .../profiler/log/DynamicLoadProfileEstimators.java |  22 +-
 wayang-tests-integration/pom.xml                   |   1 +
 29 files changed, 505 insertions(+), 63 deletions(-)