You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2022/09/29 06:32:29 UTC

[hop] branch master updated (77fa4c6389 -> d2c1578172)

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 77fa4c6389 Merge pull request #1702 from nadment/HOP-4231
     new d248603dbb HOP-4024 : Create a new execution information platform (Neo4j Executes relationship goes in wrong direction)
     new c8eabfe55e HOP-4248 : Beam BigTable Input throws Index out of bounds error
     new 8393fb3be3 HOP-4024 : Create a new execution information platform (delete, bug fixes, neo4j) HOP-4248 Beam BigTable Input throws Index out of bounds error (IT, also for Group By)
     new 867c1fea03 HOP-4248 Beam BigTable Input throws Index out of bounds error (IT)
     new 3d2b67973e HOP-4247 : HOP-GUI - Unit test remains active after detaching, you have to close and reopen the pipeline to really detach.
     new d2c1578172 Merge pull request #1708 from mattcasters/master

The 4546 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/hop/core/gui/plugin/GuiElementType.java |   1 +
 .../apache/hop/core/gui/plugin/GuiElements.java    | 158 +++++++--
 .../apache/hop/core/gui/plugin/GuiRegistry.java    |  39 +++
 .../hop/execution/IExecutionInfoLocation.java      |   9 +
 .../execution/local/FileExecutionInfoLocation.java |  59 +++-
 .../remote/RemoteExecutionInfoLocation.java        |  18 ++
 ...ervlet.java => DeleteExecutionInfoServlet.java} |  87 ++---
 .../hop/www/RegisterExecutionInfoServlet.java      |   2 +-
 .../0007-group-by-validation.hpl}                  |  87 ++---
 .../0007-group-by.hpl}                             | 106 +++---
 .../datasets/0007-group-by-golden.csv              |  61 ++++
 .../main-0007-group-by.hwf}                        |  32 +-
 .../metadata/dataset/0007-group-by-golden.json}    |  20 +-
 .../unit-test/0007-group-by-validation UNIT.json}  |  17 +-
 .../gcp/0003-input-bigtable-validate.hpl           |  36 +--
 ...t-bigtable.hwf => main-0003-input-bigtable.hwf} |  85 ++++-
 .../transforms/bigtable/BigtableRowToHopRowFn.java |   3 +-
 .../apache/hop/testing/gui/TestingGuiPlugin.java   |   7 +-
 .../neo4j/execution/NeoExecutionInfoLocation.java  | 355 ++++++++++++++++-----
 .../execution/builder/CypherDeleteBuilder.java     |  20 +-
 .../execution/builder/CypherMatchBuilder.java      | 115 +------
 .../builder/CypherRelationshipBuilder.java         |  36 +--
 .../execution/messages/messages_en_US.properties   |   6 +-
 .../hop/ui/core/gui/GuiCompositeWidgets.java       |  84 ++++-
 .../apache/hop/ui/hopgui/HopGuiEnvironment.java    |   5 +
 .../delegates/HopGuiWorkflowClipboardDelegate.java |  35 +-
 .../execution/ExecutionPerspective.java            |  66 +++-
 .../config/PipelineRunConfigurationEditor.java     |   3 -
 .../execution/messages/messages_en_US.properties   |   1 +
 29 files changed, 1038 insertions(+), 515 deletions(-)
 copy engine/src/main/java/org/apache/hop/www/{RegisterExecutionInfoServlet.java => DeleteExecutionInfoServlet.java} (54%)
 copy integration-tests/{transforms/0040-text-file-input-utf-bom.hpl => beam_directrunner/0007-group-by-validation.hpl} (83%)
 copy integration-tests/{mdi/0001-calculator-child.hpl => beam_directrunner/0007-group-by.hpl} (63%)
 create mode 100644 integration-tests/beam_directrunner/datasets/0007-group-by-golden.csv
 copy integration-tests/{gcp/main-0001-input-output.hwf => beam_directrunner/main-0007-group-by.hwf} (82%)
 copy integration-tests/{gcp/metadata/dataset/0003-input-bigtable-golden.json => beam_directrunner/metadata/dataset/0007-group-by-golden.json} (69%)
 copy integration-tests/{gcp/metadata/unit-test/0003-input-bigtable-validate UNIT.json => beam_directrunner/metadata/unit-test/0007-group-by-validation UNIT.json} (66%)
 rename integration-tests/gcp/{disabled-main-0003-input-bigtable.hwf => main-0003-input-bigtable.hwf} (63%)