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

20201019161924_add_partitioned_table_view.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45bbfda40ffe5f8cfe6a577edd559139ade029c0 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

class AddPartitionedTableView < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    execute(<<~SQL)
      CREATE OR REPLACE VIEW postgres_partitioned_tables AS
      SELECT
        pg_namespace.nspname::text || '.'::text || pg_class.relname::text AS identifier,
        pg_class.oid AS oid,
        pg_namespace.nspname AS schema,
        pg_class.relname AS name,
        CASE partitioned_tables.partstrat
        WHEN 'l' THEN 'list'
        WHEN 'r' THEN 'range'
        WHEN 'h' THEN 'hash'
        END as strategy,
        array_agg(pg_attribute.attname) as key_columns
        FROM (
          SELECT
            partrelid,
            partstrat,
            unnest(partattrs) as column_position
          FROM pg_partitioned_table
        ) partitioned_tables
        INNER JOIN pg_class
        ON partitioned_tables.partrelid = pg_class.oid
        INNER JOIN pg_namespace
        ON pg_class.relnamespace = pg_namespace.oid
        INNER JOIN pg_attribute
        ON pg_attribute.attrelid = pg_class.oid
        AND pg_attribute.attnum = partitioned_tables.column_position
        WHERE pg_namespace.nspname = current_schema()
        GROUP BY identifier, pg_class.oid, schema, name, strategy;
    SQL
  end

  def down
    execute(<<~SQL)
      DROP VIEW IF EXISTS postgres_partitioned_tables
    SQL
  end
end