View Issue Details

IDProjectCategoryView StatusLast Update
0000678Pgpool-IIBugpublic2021-03-30 16:09
Reporterchenjiaoqian Assigned Topengbo  
PrioritynormalSeverityminorReproducibilityhave not tried
Status assignedResolutionopen 
Product Version4.1.3 
Summary0000678: In replication mode, after inserting data into the foreign table, delete or update will cause the operation to wait.
DescriptionI use "pgpool_setup" command to create an environment with two nodes in replication mode under the same host.
Then connect to the pgpool server and create a foreign table.
After inserting data into the foreign table, I delete foreign table, which causes the operation to wait and the table fails to be deleted.

Execute log:
postgres=# create table test(id int,create_time timestamp default '2020-01-01');
CREATE TABLE
postgres=# create server srv FOREIGN DATA WRAPPER postgres_fdw OPTIONS;
CREATE SERVER
postgres=# create USER MAPPING FOR pgpool2 SERVER srv OPTIONS;
CREATE USER MAPPING
postgres=# CREATE FOREIGN TABLE ft_test (id int,create_time timestamp default '2020-01-01') SERVER srv OPTIONS (table_name 'test');
CREATE FOREIGN TABLE

postgres=# insert into ft_test select generate_series(1,10);
INSERT 0 10

postgres=# delete from ft_test;
TagsNo tags attached.

Activities

pengbo

2021-03-17 17:11

developer   ~0003771

Sorry for late response.
Have you resolved this issue?
It may related to https://www.pgpool.net/mantisbt/view.php?id=677

chenjiaoqian

2021-03-30 16:09

reporter   ~0003789

Thank you for your reply.

Issue History

Date Modified Username Field Change
2020-12-25 15:49 chenjiaoqian New Issue
2021-03-17 17:11 pengbo Note Added: 0003771
2021-03-17 18:10 pengbo Assigned To => pengbo
2021-03-17 18:10 pengbo Status new => assigned
2021-03-30 16:09 chenjiaoqian Note Added: 0003789