Class: Hotdog::Expression::EverythingNode

Inherits:
QueryExpressionNode show all
Defined in:
lib/hotdog/expression/semantics.rb

Instance Attribute Summary

Attributes inherited from QueryExpressionNode

#query, #values

Instance Method Summary collapse

Methods inherited from QueryExpressionNode

#dump, #evaluate

Methods inherited from ExpressionNode

#==, #dump, #evaluate, #optimize

Constructor Details

#initialize(options = {}) ⇒ EverythingNode

Returns a new instance of EverythingNode.



563
564
565
# File 'lib/hotdog/expression/semantics.rb', line 563

def initialize(options={})
  super("SELECT id AS host_id FROM hosts;", [], options)
end