Sha256: 2076ca6f20e528d2d8176d48d90abe23553d316586920cdc6d16e36a83f58ccf

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

# frozen_string_literal: true

require "active_support/deprecation"

module ActiveRecord
  module ConnectionAdapters
    module OracleEnhanced
      module DatabaseLimits
        # maximum length of Oracle identifiers
        IDENTIFIER_MAX_LENGTH = 30

        def table_alias_length # :nodoc:
          IDENTIFIER_MAX_LENGTH
        end

        # the maximum length of a table name
        def table_name_length
          IDENTIFIER_MAX_LENGTH
        end
        deprecate :table_name_length, deprecator: ActiveSupport::Deprecation.new

        # the maximum length of a column name
        def column_name_length
          IDENTIFIER_MAX_LENGTH
        end
        deprecate :column_name_length, deprecator: ActiveSupport::Deprecation.new

        # the maximum length of an index name
        # supported by this database
        def index_name_length
          IDENTIFIER_MAX_LENGTH
        end

        # the maximum length of a sequence name
        def sequence_name_length
          IDENTIFIER_MAX_LENGTH
        end

        # To avoid ORA-01795: maximum number of expressions in a list is 1000
        # tell ActiveRecord to limit us to 1000 ids at a time
        def in_clause_length
          1000
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activerecord-oracle_enhanced-adapter-7.1.0 lib/active_record/connection_adapters/oracle_enhanced/database_limits.rb
activerecord-oracle_enhanced-adapter-7.1.0.beta2 lib/active_record/connection_adapters/oracle_enhanced/database_limits.rb
activerecord-oracle_enhanced-adapter-7.1.0.beta1 lib/active_record/connection_adapters/oracle_enhanced/database_limits.rb