Class FlowsForTables
Object
org.apache.spark.sql.pipelines.graph.FlowsForTables
- All Implemented Interfaces:
- Serializable,- FlowFilter,- GraphFilter<ResolvedFlow>,- scala.Equals,- scala.Product
Used in partial graph updates to select flows that flow to "selectedTables".
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionFlowsForTables(scala.collection.immutable.Set<org.apache.spark.sql.catalyst.TableIdentifier> selectedTables) 
- 
Method SummaryModifier and TypeMethodDescriptionabstract static Rapply(T1 v1) scala.collection.immutable.Seq<ResolvedFlow>filter(scala.collection.immutable.Seq<ResolvedFlow> flows) Returns the subset of elements provided that match this filter.scala.collection.immutable.Seq<ResolvedFlow>filterNot(scala.collection.immutable.Seq<ResolvedFlow> flows) Returns the subset of elements provided that do not match this filter.scala.collection.immutable.Set<org.apache.spark.sql.catalyst.TableIdentifier>static StringtoString()Methods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface scala.EqualscanEqual, equalsMethods inherited from interface scala.ProductproductArity, productElement, productElementName, productElementNames, productIterator, productPrefix
- 
Constructor Details- 
FlowsForTablespublic FlowsForTables(scala.collection.immutable.Set<org.apache.spark.sql.catalyst.TableIdentifier> selectedTables) 
 
- 
- 
Method Details- 
applypublic abstract static R apply(T1 v1) 
- 
toString
- 
selectedTablespublic scala.collection.immutable.Set<org.apache.spark.sql.catalyst.TableIdentifier> selectedTables()
- 
filterpublic scala.collection.immutable.Seq<ResolvedFlow> filter(scala.collection.immutable.Seq<ResolvedFlow> flows) Description copied from interface:GraphFilterReturns the subset of elements provided that match this filter.- Specified by:
- filterin interface- GraphFilter<ResolvedFlow>
 
- 
filterNotpublic scala.collection.immutable.Seq<ResolvedFlow> filterNot(scala.collection.immutable.Seq<ResolvedFlow> flows) Description copied from interface:GraphFilterReturns the subset of elements provided that do not match this filter.- Specified by:
- filterNotin interface- GraphFilter<ResolvedFlow>
 
 
-