From 9d198f4d3e3bee1b2f392c1466728f6d19c89ada Mon Sep 17 00:00:00 2001 From: Melanie Plageman Date: Mon, 29 Jul 2024 15:37:32 -0400 Subject: [PATCH] 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 --- src/test/recovery/meson.build | 1 + 1 file changed, 1 insertion(+) 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', ], }, } -- 2.39.5