From e06b555c443a24ea8541f9d3041f59769cc9d45d Mon Sep 17 00:00:00 2001 From: Mustafa Senoglu Date: Tue, 30 Jun 2026 14:34:01 +0300 Subject: [PATCH] fix: add is_clamped to docdb request debug log Include the is_clamped flag from TxnReadPoint in the debug log output when yb_debug_log_docdb_requests is enabled. This provides additional context about the uncertainty window state for debugging read time issues. Fixes: #29940 --- src/yb/yql/pggate/pg_session.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/yb/yql/pggate/pg_session.cc b/src/yb/yql/pggate/pg_session.cc index 62efab442fca..ce4d6d23077a 100644 --- a/src/yb/yql/pggate/pg_session.cc +++ b/src/yb/yql/pggate/pg_session.cc @@ -481,6 +481,7 @@ class PgSession::RunHelper { << table.table_name().table_name() << ", txn_serial_no: " << rp.txn << ", read_time_serial_no: " << rp.read_time_serial_no + << ", is_clamped: " << rp.is_clamped << ": " << op->ToString(); }