Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Highlights:

AAM-1123 - Getting issue details... STATUS

Tasks:

AAM-1123 - Getting issue details... STATUS

AAM-1126 - Getting issue details... STATUS

AAM-1134 - Getting issue details... STATUS

SQL Fixes:

For AAM-1123

CREATE EXTENSION IF NOT EXISTS ltree;
do $$
    declare
        r record;
    begin
        for r in select id FROM project where archive_initialized = true
            loop
                execute 'create table if not exists ' || r.id || '.am_ancestor_tree
                        (
                            amids        ltree,
                            entity_names ltree,
                            amid         uuid,
                            entity       text
                        );';

                execute 'create index index_ancestor_table_amids_gist on ' || r.id ||
                        '.am_ancestor_tree using gist (amids);';

                execute 'create index index_ancestor_table_amid on ' || r.id ||
                        '.am_ancestor_tree (amid);';
            end loop;
    end
$$

How to upgrade

  1. Upgrade to 1.47

  2. Go to the asta7 directory and run the following script

Configuration:

  • No labels