Fix: Fixed an issue where variable aggregation operators could not be connected to other operators. #10427 (#11358)
### What problem does this PR solve? Fix: Fixed an issue where variable aggregation operators could not be connected to other operators. #10427 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
parent
1cb6b7f5dd
commit
f84662d2ee
1 changed files with 2 additions and 1 deletions
|
|
@ -700,13 +700,14 @@ export const RestrictedUpstreamMap = {
|
|||
[Operator.Placeholder]: [Operator.Begin],
|
||||
[Operator.DataOperations]: [Operator.Begin],
|
||||
[Operator.ListOperations]: [Operator.Begin],
|
||||
[Operator.VariableAssigner]: [Operator.Begin],
|
||||
[Operator.VariableAggregator]: [Operator.Begin],
|
||||
[Operator.Parser]: [Operator.Begin], // pipeline
|
||||
[Operator.Splitter]: [Operator.Begin],
|
||||
[Operator.HierarchicalMerger]: [Operator.Begin],
|
||||
[Operator.Tokenizer]: [Operator.Begin],
|
||||
[Operator.Extractor]: [Operator.Begin],
|
||||
[Operator.File]: [Operator.Begin],
|
||||
[Operator.VariableAssigner]: [Operator.Begin],
|
||||
};
|
||||
|
||||
export const NodeMap = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue