Method: NoSE::Plans::QueryExecutionPlan#initialize
- Defined in:
- lib/nose/plans/execution_plan.rb
#initialize(group, name, schema, plans) ⇒ QueryExecutionPlan
Returns a new instance of QueryExecutionPlan.
151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/nose/plans/execution_plan.rb', line 151 def initialize(group, name, schema, plans) @group = group @name = name @schema = schema @plans = plans @select_fields = [] @params = {} @steps = [] @update_steps = [] @query_plans = [] end |