Sha256: ea145539492bb552b93ebc3c4b70cdda1c474bc0b8c2fd141b35e3e50d0e22f5

Contents?: true

Size: 1.39 KB

Versions: 31

Compression:

Stored size: 1.39 KB

Contents

require 'helper'

module Arel
  module Visitors
    describe 'the postgres visitor' do
      before do
        @visitor = PostgreSQL.new Table.engine.connection_pool
      end

      describe 'locking' do
        it 'defaults to FOR UPDATE' do
          @visitor.accept(Nodes::Lock.new(Arel.sql('FOR UPDATE'))).must_be_like %{
            FOR UPDATE
          }
        end

        it 'allows a custom string to be used as a lock' do
          node = Nodes::Lock.new(Arel.sql('FOR SHARE'))
          @visitor.accept(node).must_be_like %{
            FOR SHARE
          }
        end
      end

      it "should escape LIMIT" do
        sc = Arel::Nodes::SelectStatement.new
        sc.limit = Nodes::Limit.new("omg")
        sc.cores.first.projections << 'DISTINCT ON'
        sc.orders << "xyz"
        sql =  @visitor.accept(sc)
        assert_match(/LIMIT 'omg'/, sql)
        assert_equal 1, sql.scan(/LIMIT/).length, 'should have one limit'
      end

      it 'should support DISTINCT ON' do
        core = Arel::Nodes::SelectCore.new
        core.set_quantifier = Arel::Nodes::DistinctOn.new(Arel.sql('aaron'))
        assert_match 'DISTINCT ON ( aaron )', @visitor.accept(core)
      end

      it 'should support DISTINCT' do
        core = Arel::Nodes::SelectCore.new
        core.set_quantifier = Arel::Nodes::Distinct.new
        assert_equal 'SELECT DISTINCT', @visitor.accept(core)
      end
    end
  end
end

Version data entries

31 entries across 31 versions & 2 rubygems

Version Path
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.7.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.7.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.7.0 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.6.7 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.6.6 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.6.5 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.6.4 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.6.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.6.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.6.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.6.0 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.5.4 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.5.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.5.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
arel-2.2.3 test/visitors/test_postgres.rb
arel-2.2.2 test/visitors/test_postgres.rb
dirty_history-0.5.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.5.0 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb
dirty_history-0.4.10 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/visitors/test_postgres.rb