Closed df7cb closed 2 years ago
This looks similar to issue #231 fixed here,
https://github.com/pramsey/pgsql-ogr-fdw/commit/376351712e9e89e0e0f18a4cf4fb35683368e748
Is it manifesting on the latest source?
Oh right, it is indeed fixed there. Thanks!
I've opened #235 since the build is broken for PG 10+11 now. With that, things look fine everywhere.
Could you tag a new release with all the fixes?
Thank you!
Thanks!
I originally posted this in #152, but it's really a separate issue.
On Debian, the regression tests fail the
delete from bytea_fdw
test with PG 14 (10..13 are ok):I tried poking around in the source and got as far as getting rid of
ERROR: cannot find 'fid' column in table 'bytea_fdw'
using this patch:... but then the deleted row is still visible by the SELECT afterwards. (Replacing the other mentions of planSlot in that function by slot as well makes things segfault in PG13+.)
At the moment Debian is working around this by patching the expected output file to include the faulty output, but that's of course not a fix, and makes the tests fail with PG10..13 instead.
Could someone with more FDW knowledge please look here?