You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2021/06/09 13:37:44 UTC

[incubator-streampipes-extensions] branch dev updated (d8dc190 -> 4d1be21)

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

zehnder pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git.


    from d8dc190  Merge pull request #40 from apache/STREAMPIPES-320
     add e2a7e6e  Change encoding for configuration csv file
     add 7f9fbb9  Change extractor type for csv file in S7 adapter
     new 4d1be21  Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev

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:
 .../org/apache/streampipes/connect/adapters/plc4x/s7/Plc4xS7Adapter.java | 1 +
 1 file changed, 1 insertion(+)

[incubator-streampipes-extensions] 01/01: Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev

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

zehnder pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git

commit 4d1be21c687f83bfbee666400c5b1f9724b3fe58
Merge: 7f9fbb9 d8dc190
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Wed Jun 9 15:37:24 2021 +0200

    Merge branch 'dev' of github.com:apache/incubator-streampipes-extensions into dev

 .../sinks/databases/jvm/iotdb/IotDb.java           |  81 ++--
 .../sinks/databases/jvm/iotdb/IotDbController.java |   1 +
 .../sinks/databases/jvm/iotdb/IotDbParameters.java |  49 +-
 .../sinks/databases/jvm/jdbcclient/JdbcClient.java | 515 ++++-----------------
 .../jvm/jdbcclient/model/DbDataTypeFactory.java    | 213 +++++++++
 .../jvm/jdbcclient/model/DbDataTypes.java          |  38 ++
 .../jvm/jdbcclient/model/DbDescription.java        |  62 +++
 .../jdbcclient/model/JdbcConnectionParameters.java |  76 +++
 .../jvm/jdbcclient/model/ParameterInformation.java |  20 +
 .../jvm/jdbcclient/model/StatementHandler.java     | 158 +++++++
 .../jvm/jdbcclient/model/SupportedDbEngines.java   |  29 ++
 .../jvm/jdbcclient/model/TableDescription.java     | 147 ++++++
 .../jvm/jdbcclient/utils/SQLStatementUtils.java    |  83 ++++
 .../jvm/jdbcclient/utils/StatementUtils.java       |  50 ++
 .../sinks/databases/jvm/mysql/Column.java          |  76 ---
 .../sinks/databases/jvm/mysql/Mysql.java           | 209 +--------
 .../sinks/databases/jvm/mysql/MysqlController.java |   3 +-
 .../sinks/databases/jvm/mysql/MysqlParameters.java |  61 +--
 .../sinks/databases/jvm/postgresql/PostgreSql.java |  34 +-
 .../jvm/postgresql/PostgreSqlParameters.java       |  58 +--
 20 files changed, 1094 insertions(+), 869 deletions(-)