From: Melanie Plageman Date: Mon, 29 Jul 2024 19:37:32 +0000 (-0400) Subject: Add accidentally omitted test to meson build file X-Git-Tag: REL_16_4~12 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=9d198f4d3e3bee1b2f392c1466728f6d19c89ada;p=postgresql.git Add accidentally omitted test to meson build file 01e2b7f0fd02a44e introduced a test that vacuum correctly removes tuples older than OldestXmin. The same commit was backpatched on 14-16, but 16 is the only version with meson and the test was mistakenly left off of the recovery test meson build file. Add it now. Discussion: https://postgr.es/m/CAAKRu_bWmMjmqL%2BOZ2duEQ80u7cRvpsExLNZNjzk-pXX5skwMQ%40mail.gmail.com --- diff --git a/src/test/recovery/meson.build b/src/test/recovery/meson.build index 9e9c68d0513..f5c1021a5ea 100644 --- a/src/test/recovery/meson.build +++ b/src/test/recovery/meson.build @@ -44,6 +44,7 @@ tests += { 't/036_truncated_dropped.pl', 't/037_invalid_database.pl', 't/039_end_of_wal.pl', + 't/043_vacuum_horizon_floor.pl', ], }, }