Welcome to mirror list, hosted at ThFree Co, Russian Federation.

postgres_constraint.rb « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa5909143325b65efe6501d90e3f713b15e9b72e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

module Gitlab
  module Database
    # Backed by the postgres_constraints view
    class PostgresConstraint < SharedModel
      IDENTIFIER_REGEX = /^\w+\.\w+$/.freeze
      self.primary_key = :oid

      scope :check_constraints, -> { where(constraint_type: 'c') }
      scope :primary_key_constraints, -> { where(constraint_type: 'p') }
      scope :unique_constraints, -> { where(constraint_type: 'u') }
      scope :primary_or_unique_constraints, -> { where(constraint_type: %w[u p]) }

      scope :including_column, ->(column) { where("? = ANY(column_names)", column) }
      scope :not_including_column, ->(column) { where.not("? = ANY(column_names)", column) }

      scope :valid, -> { where(constraint_valid: true) }

      scope :by_table_identifier, ->(identifier) do
        unless identifier =~ IDENTIFIER_REGEX
          raise ArgumentError, "Table name is not fully qualified with a schema: #{identifier}"
        end

        where(table_identifier: identifier)
      end
    end
  end
end