From 85f8fb182d41e9ba5d3b55f71a3b9f6b9b9a8607 Mon Sep 17 00:00:00 2001 From: lukeman Date: Thu, 29 Aug 2024 10:09:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D0019ff4=E7=9A=84=E4=B8=80?= =?UTF-8?q?=E5=A4=84=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gausskernel/runtime/executor/nodeAgg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gausskernel/runtime/executor/nodeAgg.cpp b/src/gausskernel/runtime/executor/nodeAgg.cpp index 5feabb98b..eb610fd67 100644 --- a/src/gausskernel/runtime/executor/nodeAgg.cpp +++ b/src/gausskernel/runtime/executor/nodeAgg.cpp @@ -290,7 +290,7 @@ Datum get_bit_and_initval(Oid aggtranstype, int typmod) bool is_binary_type_in_dolphin(Oid typeOid) { - if (u_sess->attr.attr_sql.dolphin) { + if (!u_sess->attr.attr_sql.dolphin) { return false; } return (typeOid == get_typeoid(PG_CATALOG_NAMESPACE, "binary")) ||