Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/test/regress/expected/misc_sanity_external_fts.out
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ ORDER BY 1, 2;
--------------------------+--------------------+--------------
gp_configuration_history | desc | text
gp_version_at_initdb | productversion | text
gp_warehouse | warehouse_name | text
pg_attribute | attacl | aclitem[]
pg_attribute | attfdwoptions | text[]
pg_attribute | attmissingval | anyarray
Expand Down Expand Up @@ -132,7 +133,7 @@ ORDER BY 1, 2;
pg_task_run_history | return_message | text
pg_task_run_history | status | text
pg_task_run_history | username | text
(30 rows)
(31 rows)

-- system catalogs without primary keys
--
Expand All @@ -152,6 +153,7 @@ ORDER BY 1;
gp_id
gp_partition_template
gp_version_at_initdb
gp_warehouse
pg_appendonly
pg_attribute_encoding
pg_auth_time_constraint
Expand All @@ -170,7 +172,7 @@ ORDER BY 1;
pg_stat_last_operation
pg_stat_last_shoperation
pg_type_encoding
(24 rows)
(25 rows)

-- system catalog unique indexes not wrapped in a constraint
-- (There should be none.)
Expand Down
2 changes: 1 addition & 1 deletion src/test/regress/input/dispatch.source
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ analyze gp_segment_configuration;
-- end_ignore
SELECT gp_inject_fault('cdbcomponent_recycle_idle_qe_error', 'interrupt', dbid, current_setting('gp_session_id')::int)
from gp_segment_configuration where content=-1 and role='p';
select * from gp_segment_configuration a, t13393 ,gp_segment_configuration b where a.dbid = t13393.tc1 limit 0;
select count(*) from gp_segment_configuration a, t13393 ,gp_segment_configuration b where a.dbid = t13393.tc1 limit 0;
SELECT gp_inject_fault('cdbcomponent_recycle_idle_qe_error', 'reset', dbid, current_setting('gp_session_id')::int)
from gp_segment_configuration where content=-1 and role='p';
drop table t13393;
6 changes: 3 additions & 3 deletions src/test/regress/output/dispatch.source
Original file line number Diff line number Diff line change
Expand Up @@ -893,9 +893,9 @@ SELECT gp_inject_fault('cdbcomponent_recycle_idle_qe_error', 'interrupt', dbid,
Success:
(1 row)

select * from gp_segment_configuration a, t13393 ,gp_segment_configuration b where a.dbid = t13393.tc1 limit 0;
dbid | content | role | preferred_role | mode | status | port | hostname | address | datadir | warehouseid | tc1 | dbid | content | role | preferred_role | mode | status | port | hostname | address | datadir | warehouseid
------+---------+------+----------------+------+--------+------+----------+---------+---------+-------------+-----+------+---------+------+----------------+------+--------+------+----------+---------+---------+-------------
select count(*) from gp_segment_configuration a, t13393 ,gp_segment_configuration b where a.dbid = t13393.tc1 limit 0;
count
-------
(0 rows)

SELECT gp_inject_fault('cdbcomponent_recycle_idle_qe_error', 'reset', dbid, current_setting('gp_session_id')::int)
Expand Down