Before plan__parent UNNEST( $v2 : iterate( $v1 ) ) ASSIGN( $v1 : collection( $source ) ) plan__child Where $v1 is not used anywhere else in the plan and $source is: ASSIGN( $source : promote( data( constant ) ) ) or ASSIGN( $source : promote( data( $v0 ) ) ) ASSIGN( $v0 : constant ) After plan__parent DATASCAN( collection( $source ) , $v2 ) plan__child Where DATASCAN operator is configured to use the collection( $source) for data represented by the “constant” and $v2 represents the xml document node.@author prestonc
|
|
|
|