diff -U3 /tmp/cirrus-ci-build/src/test/regress/expected/partition_info.out /tmp/cirrus-ci-build/src/test/recovery/tmp_check/results/partition_info.out --- /tmp/cirrus-ci-build/src/test/regress/expected/partition_info.out 2025-07-09 02:20:05.200908566 +0000 +++ /tmp/cirrus-ci-build/src/test/recovery/tmp_check/results/partition_info.out 2025-07-09 02:28:37.881564098 +0000 @@ -365,42 +365,26 @@ OPTIONS (format 'csv', filename :'filename', header 'false', delimiter ';', quote '@', escape '"', null ''); ALTER TABLE ptif_root ATTACH PARTITION agg_csv FOR VALUES FROM (10) TO (20); SELECT * FROM ptif_root; - a | b ------+--------- - 5 | 0.1 - 6 | 0.2 - 56 | 7.8 - 100 | 99.097 - 0 | 0.09561 - 42 | 324.78 -(6 rows) - +ERROR: could not open file "/tmp/cirrus-ci-build/src/test/regress/data/agg.csv" for reading: No such file or directory +HINT: COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \copy. DELETE FROM ptif_root WHERE b = 0.1; +ERROR: could not open file "/tmp/cirrus-ci-build/src/test/regress/data/agg.csv" for reading: No such file or directory +HINT: COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \copy. DELETE FROM ptif_root; -ERROR: cannot delete from foreign table "agg_csv" +ERROR: could not open file "/tmp/cirrus-ci-build/src/test/regress/data/agg.csv" for reading: No such file or directory +HINT: COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \copy. SELECT * FROM ptif_root; - a | b ------+--------- - 6 | 0.2 - 56 | 7.8 - 100 | 99.097 - 0 | 0.09561 - 42 | 324.78 -(5 rows) - +ERROR: could not open file "/tmp/cirrus-ci-build/src/test/regress/data/agg.csv" for reading: No such file or directory +HINT: COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \copy. UPDATE ptif_root SET b = 0.6 WHERE b = 0.2; +ERROR: could not open file "/tmp/cirrus-ci-build/src/test/regress/data/agg.csv" for reading: No such file or directory +HINT: COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \copy. UPDATE ptif_root SET b = 0.10; -ERROR: cannot update foreign table "agg_csv" +ERROR: could not open file "/tmp/cirrus-ci-build/src/test/regress/data/agg.csv" for reading: No such file or directory +HINT: COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \copy. SELECT * FROM ptif_root; - a | b ------+--------- - 6 | 0.6 - 56 | 7.8 - 100 | 99.097 - 0 | 0.09561 - 42 | 324.78 -(5 rows) - +ERROR: could not open file "/tmp/cirrus-ci-build/src/test/regress/data/agg.csv" for reading: No such file or directory +HINT: COPY FROM instructs the PostgreSQL server process to read a file. You may want a client-side facility such as psql's \copy. -- cleanup DROP EXTENSION file_fdw CASCADE; NOTICE: drop cascades to 2 other objects