]> granicus.if.org Git - postgresql/commit
Fix logical_decoding_timelines test crashes
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 1 Apr 2016 19:47:00 +0000 (16:47 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 1 Apr 2016 19:47:00 +0000 (16:47 -0300)
commit82c83b337202fa0f5b235bdfaeb992a5cee40ed5
tree8a9fa309c24aa8c51ee304d18337b6882b842c6b
parent27f3bbfad46e694fcbf2fa39cb621110d46ec95c
Fix logical_decoding_timelines test crashes

In the test_slot_timelines test module, we were abusing passing NULL
values which was received as zeroes in x86, but this breaks in ARM
(buildfarm member hamster) by crashing instead.  Fix the breakage by
marking these functions as STRICT; the InvalidXid value that was
previously implicit in NULL values (on x86 at least) can now be passed
as 0.  Failing to follow the fmgr protocol to check for NULLs beforehand
was causing ARM to fail, as evidenced by segmentation faults in
buildfarm member hamster.

In order to use the new functionality in the test script, use COALESCE
in the right spot to avoid forwarding NULL values.

This was diagnosed from the hamster crash by Craig Ringer, who also
proposed a different patch (checking for NULL values explicitely in the
C function code, and keeping the non-strictness in the C functions).
I decided to go with this approach instead.
src/test/modules/test_slot_timelines/expected/load_extension.out
src/test/modules/test_slot_timelines/sql/load_extension.sql
src/test/modules/test_slot_timelines/test_slot_timelines--1.0.sql
src/test/modules/test_slot_timelines/test_slot_timelines.c
src/test/recovery/t/006_logical_decoding_timelines.pl