From 1feaa2ec4b01dea86fb2785817f9e4cd18d673c6 Mon Sep 17 00:00:00 2001 From: qiucong Date: Mon, 7 Dec 2020 15:08:56 +0800 Subject: [PATCH 1/2] =?UTF-8?q?KERNEL-6272=20feat:=20FTP,=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E8=BF=9E=E6=8E=A5=E7=AD=89=E7=B3=BB=E7=BB=9F=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E9=85=8D=E7=BD=AE=E5=AF=86=E7=A0=81=E7=9A=84=E5=9C=B0?= =?UTF-8?q?=E6=96=B9=E9=9C=80=E8=A6=81=E5=B1=8F=E8=94=BD=E8=AE=B0=E4=BD=8F?= =?UTF-8?q?=E5=AF=86=E7=A0=81=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/pages/maintain/forms/components/form.jdbc.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/pages/maintain/forms/components/form.jdbc.ts b/src/modules/pages/maintain/forms/components/form.jdbc.ts index f3f8043..e111ed2 100644 --- a/src/modules/pages/maintain/forms/components/form.jdbc.ts +++ b/src/modules/pages/maintain/forms/components/form.jdbc.ts @@ -260,6 +260,7 @@ export class FormJdbc extends BI.Widget { allowBlank: true, value: password, inputType: 'password', + autocomplete: 'new-password', watermark: BI.i18nText('Dec-Dcm_Connection_Form_Password'), ref: (_ref: any) => { this.form.password = _ref; From 4cc0ad2497aedecfbf5fbac9cf1135611872f6e9 Mon Sep 17 00:00:00 2001 From: qiucong Date: Mon, 7 Dec 2020 15:21:56 +0800 Subject: [PATCH 2/2] =?UTF-8?q?DEC-16248=20feat:=20Kyligence=E4=BC=81?= =?UTF-8?q?=E4=B8=9A=E7=89=88=E6=95=B0=E6=8D=AE=E6=BA=90=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/constants/constant.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/modules/constants/constant.ts b/src/modules/constants/constant.ts index d7519ec..b0e28ac 100644 --- a/src/modules/constants/constant.ts +++ b/src/modules/constants/constant.ts @@ -446,6 +446,16 @@ export const DATA_BASE_TYPES = [ type: 'jdbc', hasSchema: true, kerberos: false, + }, { + text: 'Kyligence', + databaseType: 'kyligence', + driver: 'org.apache.kylin.jdbc.Driver', + url: 'jdbc:kylin://hostname:port/database', + commonly: false, + internal: true, + type: 'jdbc', + hasSchema: true, + kerberos: false, }, { text: 'Microsoft SQL Server', databaseType: 'sql-server',