Sha256: 086c595c7c45ae6e52780ee32e43ce6da6a643f9647b52e834aacd7e1f3cfde7

Contents?: true

Size: 1.93 KB

Versions: 2

Compression:

Stored size: 1.93 KB

Contents

module Sequel
  module Oracle
    module DatabaseMethods
      def tables(opts={})
        ds = from(:tab).server(opts[:server]).select(:tname).filter(:tabtype => 'TABLE')
        ds.map{|r| ds.send(:output_identifier, r[:tname])}
      end

      def table_exists?(name)
        from(:tab).filter(:tname =>dataset.send(:input_identifier, name), :tabtype => 'TABLE').count > 0
      end
    end
    
    module DatasetMethods
      include Dataset::UnsupportedIntersectExceptAll

      SELECT_CLAUSE_ORDER = %w'distinct columns from join where group having compounds order limit'.freeze

      # Oracle uses MINUS instead of EXCEPT, and doesn't support EXCEPT ALL
      def except(dataset, all = false)
        raise(Sequel::Error, "EXCEPT ALL not supported") if all
        compound_clone(:minus, dataset, all)
      end

      def empty?
        db[:dual].where(exists).get(1) == nil
      end

      private

      # Oracle doesn't support the use of AS when aliasing a dataset.  It doesn't require
      # the use of AS anywhere, so this disables it in all cases.
      def as_sql(expression, aliaz)
        "#{expression} #{quote_identifier(aliaz)}"
      end

      def select_clause_order
        SELECT_CLAUSE_ORDER
      end

      # Oracle doesn't support DISTINCT ON
      def select_distinct_sql(sql, opts)
        if opts[:distinct]
          raise(Error, "DISTINCT ON not supported by Oracle") unless opts[:distinct].empty?
          sql << " DISTINCT"
        end
      end

      # Oracle requires a subselect to do limit and offset
      def select_limit_sql(sql, opts)
        if limit = opts[:limit]
          if (offset = opts[:offset]) && (offset > 0)
            sql.replace("SELECT * FROM (SELECT raw_sql_.*, ROWNUM raw_rnum_ FROM(#{sql}) raw_sql_ WHERE ROWNUM <= #{limit + offset}) WHERE raw_rnum_ > #{offset}")
          else
            sql.replace("SELECT * FROM (#{sql}) WHERE ROWNUM <= #{limit}")
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
colincasey-sequel-2.10.1 lib/sequel_core/adapters/shared/oracle.rb
sequel-2.10.0 lib/sequel_core/adapters/shared/oracle.rb