From eb4932d2334e0cd8414c16410449b24336db28f3 Mon Sep 17 00:00:00 2001 From: Hemny Date: Tue, 6 Aug 2024 17:22:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Ddeserialization=5Fto=5Ftuple?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E7=9A=84=E5=86=85=E5=AD=98=E6=B3=84=E9=9C=B2?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gausskernel/process/postmaster/pgaudit.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gausskernel/process/postmaster/pgaudit.cpp b/src/gausskernel/process/postmaster/pgaudit.cpp index 89ac684e3..5fbc36b00 100755 --- a/src/gausskernel/process/postmaster/pgaudit.cpp +++ b/src/gausskernel/process/postmaster/pgaudit.cpp @@ -3007,12 +3007,12 @@ static void deserialization_to_tuple(Datum (&values)[PGAUDIT_QUERY_COLS_NEW], } values[i++] = BoolGetDatum(verifyResult); /* verify_result */ } else { - values[i++] = CStringGetTextDatum(FILED_NULLABLE(NULL)); /* verify_result*/ - nulls[i] = true; + values[i] = CStringGetTextDatum(FILED_NULLABLE(NULL)); /* verify_result */ + nulls[i++] = true; } } else { - values[i++] = CStringGetTextDatum(FILED_NULLABLE(NULL)); /* verify_result*/ - nulls[i] = true; + values[i] = CStringGetTextDatum(FILED_NULLABLE(NULL)); /* verify_result */ + nulls[i++] = true; } } if (newVersion) {