# File lib/arel/table.rb, line 104
    def columns
      if $VERBOSE
        warn "(\#{caller.first}) Arel::Table#columns is deprecated and will be removed in\nArel 4.0.0 with no replacement.  PEW PEW PEW!!!\n"
      end
      @columns ||=
        attributes_for @engine.connection.columns(@name, "#{@name} Columns")
    end