This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git
The following commit(s) were added to refs/heads/master by this push:
new 5fe84d9 HOP-2549 updated incorrect column index in agg table
new cd06b46 Merge pull request #640 from bamaer/HOP-2549
5fe84d9 is described below
commit 5fe84d9fc32975e1e5304bca80e47cdd8b94bc7e
Author: Bart Maertens <[email protected]>
AuthorDate: Tue Feb 23 20:35:24 2021 +0100
HOP-2549 updated incorrect column index in agg table
---
.../org/apache/hop/ui/pipeline/transforms/groupby/GroupByDialog.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/ui/src/main/java/org/apache/hop/ui/pipeline/transforms/groupby/GroupByDialog.java
b/ui/src/main/java/org/apache/hop/ui/pipeline/transforms/groupby/GroupByDialog.java
index 1d46f69..912d188 100644
---
a/ui/src/main/java/org/apache/hop/ui/pipeline/transforms/groupby/GroupByDialog.java
+++
b/ui/src/main/java/org/apache/hop/ui/pipeline/transforms/groupby/GroupByDialog.java
@@ -574,7 +574,7 @@ public class GroupByDialog extends BaseTransformDialog
implements ITransformDial
item.setText(1, Const.NVL(aggregation.getField(), ""));
item.setText(2, Const.NVL(aggregation.getSubject(), ""));
item.setText(3, GroupByMeta.getTypeDescLong(aggregation.getType()));
- item.setText(3, Const.NVL(aggregation.getValue(), ""));
+ item.setText(4, Const.NVL(aggregation.getValue(), ""));
}
wGroup.setRowNums();