You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by jf...@apache.org on 2018/12/25 19:01:10 UTC

[incubator-plc4x] branch develop updated (4d4612a -> acfdb79)

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

jfeinauer pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git.


    from 4d4612a  Initial commit C++ API
     add d3e6a58  [CALCITE] Started implementation for the Calcite Integration.
     add df1a6db  [CALCITE] Running Version.
     add 06ea388  [CALCITE] Some refactoring.
     add 69a003e  [CALCITE] Some refactoring.
     new acfdb79  Merge branch 'feature/calcite-adapter' into develop

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:
 .../apache-calcite}/pom.xml                        |  85 ++++-----
 .../main/java/org/apache/plc4x/Plc4xBaseTable.java | 197 +++++++++++++++++++++
 .../main/java/org/apache/plc4x/Plc4xSchema.java    | 101 +++++++++++
 .../java/org/apache/plc4x/Plc4xSchemaFactory.java  |  58 ++++++
 .../java/org/apache/plc4x/Plc4xStreamTable.java    |  35 ++--
 .../src/main/java/org/apache/plc4x/Plc4xTable.java |  29 ++-
 .../java/org/apache/plc4x/DriverManagerTest.java   |  86 +++++++++
 .../java/org/apache/plc4x/Plc4XBaseTableTest.java  |  48 +++++
 .../org/apache/plc4x/Plc4xSchemaFactoryTest.java   |  28 ++-
 .../apache-calcite/src/test/resources/example.yml  |  11 +-
 .../apache-calcite}/src/test/resources/logback.xml |   0
 .../apache-calcite/src/test/resources/model.yml    |  36 ++--
 integrations/pom.xml                               |   1 +
 .../java/scraper/config/JobConfiguration.java      |   2 +-
 14 files changed, 600 insertions(+), 117 deletions(-)
 copy {examples/hello-world-plc4x => integrations/apache-calcite}/pom.xml (53%)
 create mode 100644 integrations/apache-calcite/src/main/java/org/apache/plc4x/Plc4xBaseTable.java
 create mode 100644 integrations/apache-calcite/src/main/java/org/apache/plc4x/Plc4xSchema.java
 create mode 100644 integrations/apache-calcite/src/main/java/org/apache/plc4x/Plc4xSchemaFactory.java
 copy plc4j/protocols/driver-bases/base/src/main/java/org/apache/plc4x/java/base/messages/items/DefaultLocalTimeFieldItem.java => integrations/apache-calcite/src/main/java/org/apache/plc4x/Plc4xStreamTable.java (53%)
 copy plc4j/protocols/driver-bases/base/src/main/java/org/apache/plc4x/java/base/messages/PlcRawMessage.java => integrations/apache-calcite/src/main/java/org/apache/plc4x/Plc4xTable.java (57%)
 create mode 100644 integrations/apache-calcite/src/test/java/org/apache/plc4x/DriverManagerTest.java
 create mode 100644 integrations/apache-calcite/src/test/java/org/apache/plc4x/Plc4XBaseTableTest.java
 copy plc4j/protocols/driver-bases/test/src/main/java/org/apache/plc4x/java/base/connection/TestChannelFactory.java => integrations/apache-calcite/src/test/java/org/apache/plc4x/Plc4xSchemaFactoryTest.java (58%)
 copy plc4j/utils/scraper/src/test/resources/config.yml => integrations/apache-calcite/src/test/resources/example.yml (88%)
 copy {plc4j/protocols/ads => integrations/apache-calcite}/src/test/resources/logback.xml (100%)
 copy .editorconfig => integrations/apache-calcite/src/test/resources/model.yml (51%)


[incubator-plc4x] 01/01: Merge branch 'feature/calcite-adapter' into develop

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

jfeinauer pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git

commit acfdb79971e328c2d9da037ab51483fce8b47c95
Merge: 4d4612a 69a003e
Author: Julian Feinauer <j....@pragmaticminds.de>
AuthorDate: Tue Dec 25 20:01:02 2018 +0100

    Merge branch 'feature/calcite-adapter' into develop

 integrations/apache-calcite/pom.xml                |  96 ++++++++++
 .../main/java/org/apache/plc4x/Plc4xBaseTable.java | 197 +++++++++++++++++++++
 .../main/java/org/apache/plc4x/Plc4xSchema.java    | 101 +++++++++++
 .../java/org/apache/plc4x/Plc4xSchemaFactory.java  |  58 ++++++
 .../java/org/apache/plc4x/Plc4xStreamTable.java    |  45 +++++
 .../src/main/java/org/apache/plc4x/Plc4xTable.java |  39 ++++
 .../java/org/apache/plc4x/DriverManagerTest.java   |  86 +++++++++
 .../java/org/apache/plc4x/Plc4XBaseTableTest.java  |  48 +++++
 .../org/apache/plc4x/Plc4xSchemaFactoryTest.java   |  37 ++++
 .../apache-calcite/src/test/resources/example.yml  |  32 ++++
 .../apache-calcite/src/test/resources/logback.xml  |  38 ++++
 .../apache-calcite/src/test/resources/model.yml    |  33 ++++
 integrations/pom.xml                               |   1 +
 .../java/scraper/config/JobConfiguration.java      |   2 +-
 14 files changed, 812 insertions(+), 1 deletion(-)