mirror of https://github.com/apache/lucene.git
SOLR-9064: Adds an explanation of the incoming stream to an UpdateStream's explanation
This commit is contained in:
parent
b6f8c6500e
commit
dccf6a4d98
|
@ -179,6 +179,8 @@ Bug Fixes
|
||||||
|
|
||||||
* SOLR-8792: ZooKeeper ACL support fixed. (Esther Quansah, Ishan Chattopadhyaya, Steve Rowe)
|
* SOLR-8792: ZooKeeper ACL support fixed. (Esther Quansah, Ishan Chattopadhyaya, Steve Rowe)
|
||||||
|
|
||||||
|
* SOLR-9064: Adds an explanation of the incoming stream to an UpdateStream's explanation (Dennis Gove)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
* SOLR-8722: Don't force a full ZkStateReader refresh on every Overseer operation.
|
* SOLR-8722: Don't force a full ZkStateReader refresh on every Overseer operation.
|
||||||
|
|
|
@ -188,6 +188,7 @@ public class UpdateStream extends TupleStream implements Expressible {
|
||||||
child.setImplementingClass(getClass().getName());
|
child.setImplementingClass(getClass().getName());
|
||||||
child.setExpressionType(ExpressionType.STREAM_DECORATOR);
|
child.setExpressionType(ExpressionType.STREAM_DECORATOR);
|
||||||
child.setExpression(toExpression(factory, false).toString());
|
child.setExpression(toExpression(factory, false).toString());
|
||||||
|
child.addChild(tupleSource.toExplanation(factory));
|
||||||
|
|
||||||
explanation.addChild(child);
|
explanation.addChild(child);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue