Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • hive/hivemind
1 result
Show changes
Commits on Source (3)
......@@ -33,7 +33,7 @@ variables:
include:
- template: Workflows/Branch-Pipelines.gitlab-ci.yml
- project: hive/haf
ref: e988b4e0d221f4b8efcad2bc2e1b587e4c227669 # master
ref: 3a7456f280d6eefbd7f47240cbd1fa5e0a6251d3
file: /scripts/ci-helpers/prepare_data_image_job.yml # implicitly pulls base.gitlab-ci.yml from common-ci-configuration
......
Subproject commit e988b4e0d221f4b8efcad2bc2e1b587e4c227669
Subproject commit 3a7456f280d6eefbd7f47240cbd1fa5e0a6251d3
......@@ -21,6 +21,7 @@ CREATE OR REPLACE FUNCTION hivemind_app.find_comment_id(
in _check boolean)
RETURNS INT
LANGUAGE 'plpgsql'
SET log_min_messages=FATAL
AS
$function$
DECLARE
......@@ -61,6 +62,7 @@ CREATE OR REPLACE FUNCTION hivemind_app.find_account_id(
in _check boolean)
RETURNS INT
LANGUAGE 'plpgsql'
SET log_min_messages=FATAL
AS
$function$
DECLARE
......@@ -85,6 +87,7 @@ CREATE OR REPLACE FUNCTION hivemind_app.find_tag_id(
)
RETURNS INTEGER
LANGUAGE 'plpgsql' STABLE
SET log_min_messages=FATAL
AS
$function$
DECLARE
......@@ -109,6 +112,7 @@ CREATE OR REPLACE FUNCTION hivemind_app.find_category_id(
)
RETURNS INTEGER
LANGUAGE 'plpgsql' STABLE
SET log_min_messages=FATAL
AS
$function$
DECLARE
......@@ -133,6 +137,7 @@ CREATE OR REPLACE FUNCTION hivemind_app.find_community_id(
)
RETURNS INTEGER
LANGUAGE 'plpgsql' STABLE
SET log_min_messages=FATAL
AS
$function$
DECLARE
......
......@@ -76,4 +76,6 @@ fi
"$SCRIPTPATH/../haf/scripts/create_haf_app_role.sh" --postgres-url="$POSTGRES_ACCESS" --haf-app-account="hivemind"
psql "$POSTGRES_ACCESS" -c "GRANT SET ON PARAMETER log_min_messages TO hivemind;"
supplement_builtin_roles "$POSTGRES_ACCESS"