From 231622f8ed46a1078ff79ecf84c95cd1d7013990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Mon, 14 Apr 2025 11:08:24 +0000 Subject: [PATCH] Adding sleep in test_ps_logging --- test/tap/tests/test_ps_logging-t.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/tap/tests/test_ps_logging-t.cpp b/test/tap/tests/test_ps_logging-t.cpp index 015ed25f8..5534deb84 100644 --- a/test/tap/tests/test_ps_logging-t.cpp +++ b/test/tap/tests/test_ps_logging-t.cpp @@ -928,6 +928,7 @@ int main(int argc, char** argv) { ok(ins_ok, "Extended prepared INSERT executed"); } + sleep(2); // For each non-key column, perform a prepared SELECT. // We use the first inserted row's id (assumed to be 1) and the value from that column. int sel_id = 1; @@ -991,6 +992,7 @@ int main(int argc, char** argv) { //"POINT(1 2)", // col_geometry in WKT &inserted_id); ok(ins_ok, "Full prepared INSERT executed"); + sleep(2); vector full_row; bool sel_ok = do_prepared_select_full(proxy, inserted_id, full_row); ok(sel_ok, "Full prepared SELECT executed");