case class JoinPlan(itemIds: Set[Int], plan: LogicalPlan, joinConds: Set[Expression], planCost: Cost) extends Product with Serializable
Partial join order in a specific level.
- itemIds
Set of item ids participating in this partial plan.
- plan
The plan tree with the lowest cost for these items found so far.
- joinConds
Join conditions included in the plan.
- planCost
The cost of this plan tree is the sum of costs of all intermediate joins.
- Alphabetic
- By Inheritance
- JoinPlan
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
JoinPlan(itemIds: Set[Int], plan: LogicalPlan, joinConds: Set[Expression], planCost: Cost)
- itemIds
Set of item ids participating in this partial plan.
- plan
The plan tree with the lowest cost for these items found so far.
- joinConds
Join conditions included in the plan.
- planCost
The cost of this plan tree is the sum of costs of all intermediate joins.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def betterThan(other: JoinPlan, conf: SQLConf): Boolean
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val itemIds: Set[Int]
- val joinConds: Set[Expression]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val plan: LogicalPlan
- val planCost: Cost
-
def
rootCost(conf: SQLConf): Cost
Get the cost of the root node of this plan tree.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()