class Arel::SelectManager

def from(table)

def from(table)
  table = Nodes::SqlLiteral.new(table) if String === table
  case table
  when Nodes::Join
    @ctx.source.right << table
  else
    @ctx.source.left = table
  end
  self
end