Method: NoSE::Plans::QueryPlanTree#initialize

Defined in:
lib/nose/plans/query_planner.rb

#initialize(state, cost_model) ⇒ QueryPlanTree

Returns a new instance of QueryPlanTree.



92
93
94
95
# File 'lib/nose/plans/query_planner.rb', line 92

def initialize(state, cost_model)
  @root = RootPlanStep.new(state)
  @cost_model = cost_model
end