feat: add openGauss PQ acceleration feature (#16432)

Co-authored-by: chenhuan <huan.chen0728@foxmail>
This commit is contained in:
chenhuan0728
2025-03-24 15:16:40 +08:00
committed by GitHub
parent 16b6ffd915
commit 770c461a8f
4 changed files with 35 additions and 3 deletions

View File

@@ -43,3 +43,8 @@ class OpenGaussConfig(BaseSettings):
description="Max connection of the OpenGauss database",
default=5,
)
OPENGAUSS_ENABLE_PQ: bool = Field(
description="Enable openGauss PQ acceleration feature",
default=False,
)