Sha256: 9a381792a2f789cd1e3bcc691f3592f0abc8ecb9cc538378dbdbfc699dc36a2f

Contents?: true

Size: 1.39 KB

Versions: 88

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
      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

88 entries across 70 versions & 13 rubygems

Version Path
challah-0.6.1 vendor/bundle/gems/arel-3.0.2/test/visitors/test_postgres.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/visitors/test_postgres.rb
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/visitors/test_postgres.rb
rails-uploader-0.0.1 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/visitors/test_postgres.rb
challah-0.6.0 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb
challah-0.6.0 vendor/bundle/gems/arel-3.0.2/test/visitors/test_postgres.rb
challah-0.5.4 vendor/bundle/gems/arel-3.0.2/test/visitors/test_postgres.rb
challah-0.5.4 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb
challah-0.5.3 vendor/bundle/gems/arel-3.0.2/test/visitors/test_postgres.rb
challah-0.5.3 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb
challah-0.5.2 vendor/bundle/gems/arel-3.0.2/test/visitors/test_postgres.rb
challah-0.5.2 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb
challah-0.5.1 vendor/bundle/gems/arel-3.0.2/test/visitors/test_postgres.rb
arel-3.0.2 test/visitors/test_postgres.rb
arel-3.0.1 test/visitors/test_postgres.rb
challah-0.5.0 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb
challah-0.4.1 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb
challah-0.4.0 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb
challah-0.3.5 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb
challah-0.3.4 vendor/bundle/gems/arel-3.0.0/test/visitors/test_postgres.rb