From 7bedccdccb72ed3a2a9a0d4b4abd3c58f31a3781 Mon Sep 17 00:00:00 2001 From: junjun Date: Wed, 15 Oct 2025 16:49:32 +0800 Subject: [PATCH] feat: support starrocks datasource --- backend/apps/db/constant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/apps/db/constant.py b/backend/apps/db/constant.py index 3df5a14b..abb01355 100644 --- a/backend/apps/db/constant.py +++ b/backend/apps/db/constant.py @@ -24,7 +24,7 @@ class DB(Enum): redshift = ('redshift', 'AWS Redshift', '"', '"', ConnectType.py_driver) es = ('es', 'Elasticsearch', '"', '"', ConnectType.py_driver) kingbase = ('kingbase', 'Kingbase', '"', '"', ConnectType.py_driver) - starrocks = ('starrocks', 'StarRocks', '"', '"', ConnectType.py_driver) + starrocks = ('starrocks', 'StarRocks', '`', '`', ConnectType.py_driver) def __init__(self, type, db_name, prefix, suffix, connect_type: ConnectType): self.type = type