Skip to content

Commit

Permalink
Fix system_queries test
Browse files Browse the repository at this point in the history
  • Loading branch information
Karina Litskevich committed May 30, 2024
1 parent 7e0dc18 commit db2cd82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/regress/expected/system_queries.out
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
BEGIN;
SET LOCAL citus.show_shards_for_app_name_prefixes = '';
-- The following query retrieves the foreign key constraints of the table "pg_dist_background_job"
-- along with their details. This modification includes a fix for a null pointer exception that occurred
-- in the "HasRangeTableRef" method of "worker_shard_visibility". The issue was resolved with PR #7604.
Expand Down Expand Up @@ -31,3 +33,4 @@ order by
pg_dist_background_task_depend_job_id_fkey | job_id | pg_dist_background_job | pg_catalog
(2 rows)

END;
3 changes: 3 additions & 0 deletions src/test/regress/sql/system_queries.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
BEGIN;
SET LOCAL citus.show_shards_for_app_name_prefixes = '';
-- The following query retrieves the foreign key constraints of the table "pg_dist_background_job"
-- along with their details. This modification includes a fix for a null pointer exception that occurred
-- in the "HasRangeTableRef" method of "worker_shard_visibility". The issue was resolved with PR #7604.
Expand Down Expand Up @@ -25,3 +27,4 @@ where
and ns.nspname='pg_catalog'
order by
fns.nspname, fc.relname, a.attnum;
END;

0 comments on commit db2cd82

Please sign in to comment.