From 89703f802fc010e7087dc2eb8393ccd5faf4bafb Mon Sep 17 00:00:00 2001 From: hwhbj Date: Wed, 31 Jul 2024 14:42:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Djdbc=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=8A=A5=E6=96=87=E5=90=8E=EF=BC=8C=E9=80=BB=E8=BE=91=E5=A4=8D?= =?UTF-8?q?=E5=88=B6=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gausskernel/storage/replication/datasender.cpp | 2 ++ src/gausskernel/storage/replication/walsender.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/src/gausskernel/storage/replication/datasender.cpp b/src/gausskernel/storage/replication/datasender.cpp index 55544bd51..9065dbdf4 100755 --- a/src/gausskernel/storage/replication/datasender.cpp +++ b/src/gausskernel/storage/replication/datasender.cpp @@ -292,6 +292,8 @@ static void DataSndHandshake(void) } } break; + case 'V': /* client conn driver support trace info*/ + break; case 'X': /* standby is closing the connection */ proc_exit(0); diff --git a/src/gausskernel/storage/replication/walsender.cpp b/src/gausskernel/storage/replication/walsender.cpp index a0f17456e..e59762983 100755 --- a/src/gausskernel/storage/replication/walsender.cpp +++ b/src/gausskernel/storage/replication/walsender.cpp @@ -639,6 +639,7 @@ static void WalSndHandshake(void) /* standby is closing the connection */ proc_exit(0); /* fall-through */ + case 'V': /* client conn driver support trace info*/ case 'P': /* standby is closing the connection */ break;