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

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


    from 3b4ffb223f Merge pull request #1712 from shlxue/master
     new 63fea0b0cb HOP-4259 : Row Generator throws error when no limit 
specified
     new 51084ce6a7 HOP-4024 : Create a new execution information platform 
(code-hardening, docs)
     new 420829be25 HOP-4262 : Add support for Apache Hive databases
     new a2696d9849 HOP-4264 : Beam performance problem caused by excessive 
locking
     new 9f2d7877cb HOP-4265 : Beam File Input gets stuck with an empty file 
definition
     new 2b4b2ea5d0 HOP-4262 : Add support for Apache Hive databases
     new e6ffb71bc3 HOP-4262 : Add support for Apache Hive databases
     new 090e2b9441 HOP-4264 : Beam performance problem caused by excessive 
locking (test fix)
     new 73dacfd414 HOP-4264 : Beam performance problem caused by excessive 
locking (test fix)
     new f96df79e0d HOP-4262 : Add support for Apache Hive databases
     new 41559112fc HOP-4262 : Add support for Apache Hive databases
     new b49a539577 HOP-4266 : Parquet Input get fields button doesn't resolve 
variables
     new 05c1806435 Merge pull request #1714 from mattcasters/master

The 4576 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:
 assemblies/core/lib/pom.xml                        |   6 +-
 assemblies/lib/pom.xml                             |   6 +-
 .../databases/clickhouse-assemblies/pom.xml        |   2 -
 .../pom.xml                                        |  39 +-
 .../hive-assemblies/src/assembly/assembly.xml      |  56 ++
 .../src/main/resources/version.xml                 |   0
 assemblies/plugins/databases/pom.xml               |   1 +
 assemblies/plugins/dist/pom.xml                    |  13 +
 assemblies/plugins/engines/beam/pom.xml            |  23 +-
 assemblies/plugins/tech/aws/pom.xml                |   5 +
 assemblies/plugins/tech/parquet/pom.xml            |  19 +-
 .../plugins/tech/parquet/src/assembly/assembly.xml |  14 +-
 core/pom.xml                                       |   6 +-
 .../apache/hop/core/database/BaseDatabaseMeta.java | 325 +++++++---
 .../org/apache/hop/core/database/Database.java     |  94 ++-
 .../org/apache/hop/core/database/IDatabase.java    |  11 +
 ...rspective-data-orchestration-left-hand-tree.png | Bin 0 -> 122892 bytes
 .../perspective-explorer-git-info-panel.png        | Bin 0 -> 218915 bytes
 ...perspective-explorer-git-toolbar-operations.png | Bin 0 -> 21081 bytes
 ...erspective-explorer-git-visual-diff-example.png | Bin 0 -> 93205 bytes
 .../hop-gui/perspective-explorer-toolbar-items.png | Bin 0 -> 20847 bytes
 .../apache-hop-execution-information-model.svg     |   2 +
 docs/hop-user-manual/modules/ROOT/nav.adoc         |   1 +
 .../ROOT/pages/database/databases/apache-hive.adoc |  54 ++
 .../hop-gui/perspective-data-orchestration.adoc    |  14 +-
 .../pages/hop-gui/perspective-file-explorer.adoc   |  57 +-
 .../ROOT/pages/hop-gui/perspective-metadata.adoc   |  24 +-
 .../ROOT/pages/hop-gui/perspective-neo4j.adoc      |   9 +-
 .../ROOT/pages/hop-gui/perspective-plugin.adoc     |   3 +-
 .../ROOT/pages/hop-gui/perspective-search.adoc     |   4 +-
 .../modules/ROOT/pages/hop-gui/perspectives.adoc   |  16 +-
 .../modules/ROOT/pages/hop-gui/shortcuts.adoc      |   1 +
 .../execution-information-location.adoc            |  41 +-
 .../metadata-types/neo4j/neo4j-location-type.adoc  |  38 ++
 .../java/org/apache/hop/pipeline/Pipeline.java     |   1 -
 .../engines/local/LocalPipelineEngine.java         |   2 -
 .../hop/pipeline/transform/BaseTransform.java      |  40 +-
 .../hop/pipeline/transform/BaseTransformTest.java  |   3 +
 plugins/databases/hive/pom.xml                     |  65 ++
 .../hop/databases/hive/HiveDatabaseMeta.java       | 659 +++++++++++++++++++++
 .../hive/messages/messages_en_US.properties        |  22 +
 .../hop/databases/hive/HiveDatabaseMetaTest.java   | 497 ++++++++++++++++
 .../hop/databases/hive/HiveValueMetaBaseTest.java  | 118 ++++
 plugins/databases/pom.xml                          |   1 +
 plugins/engines/beam/pom.xml                       |   5 +
 .../hop/beam/core/transform/BeamRowHandler.java    | 116 ++++
 .../hop/beam/core/transform/TransformBaseFn.java   |   4 +
 .../hop/beam/core/transform/TransformFn.java       |   8 +-
 .../apache/hop/beam/metadata/FileDefinition.java   |  21 +-
 .../hop/beam/transforms/io/BeamInputMeta.java      |  18 +-
 plugins/tech/parquet/pom.xml                       |   1 -
 .../transforms/input/ParquetInputDialog.java       |   2 +-
 .../transforms/rowgenerator/RowGenerator.java      |   2 +-
 .../csvinput/CsvInputContentParsingTest.java       |   2 +
 pom.xml                                            |   2 +
 .../hop/ui/core/database/DatabaseMetaEditor.java   |  16 +-
 .../delegates/HopGuiFileRefreshDelegate.java       |   4 +-
 57 files changed, 2282 insertions(+), 211 deletions(-)
 copy assemblies/plugins/databases/{clickhouse-assemblies => 
hive-assemblies}/pom.xml (59%)
 create mode 100644 
assemblies/plugins/databases/hive-assemblies/src/assembly/assembly.xml
 copy assemblies/plugins/{actions/abort => 
databases/hive-assemblies}/src/main/resources/version.xml (100%)
 create mode 100644 
docs/hop-user-manual/modules/ROOT/assets/images/hop-gui/perspective-data-orchestration-left-hand-tree.png
 create mode 100644 
docs/hop-user-manual/modules/ROOT/assets/images/hop-gui/perspective-explorer-git-info-panel.png
 create mode 100644 
docs/hop-user-manual/modules/ROOT/assets/images/hop-gui/perspective-explorer-git-toolbar-operations.png
 create mode 100644 
docs/hop-user-manual/modules/ROOT/assets/images/hop-gui/perspective-explorer-git-visual-diff-example.png
 create mode 100644 
docs/hop-user-manual/modules/ROOT/assets/images/hop-gui/perspective-explorer-toolbar-items.png
 create mode 100644 
docs/hop-user-manual/modules/ROOT/assets/images/metadata-types/neo4j/apache-hop-execution-information-model.svg
 create mode 100644 
docs/hop-user-manual/modules/ROOT/pages/database/databases/apache-hive.adoc
 create mode 100644 
docs/hop-user-manual/modules/ROOT/pages/metadata-types/neo4j/neo4j-location-type.adoc
 create mode 100644 plugins/databases/hive/pom.xml
 create mode 100644 
plugins/databases/hive/src/main/java/org/apache/hop/databases/hive/HiveDatabaseMeta.java
 create mode 100644 
plugins/databases/hive/src/main/resources/org/apache/hop/databases/hive/messages/messages_en_US.properties
 create mode 100644 
plugins/databases/hive/src/test/java/org/apache/hop/databases/hive/HiveDatabaseMetaTest.java
 create mode 100644 
plugins/databases/hive/src/test/java/org/apache/hop/databases/hive/HiveValueMetaBaseTest.java
 create mode 100644 
plugins/engines/beam/src/main/java/org/apache/hop/beam/core/transform/BeamRowHandler.java

Reply via email to