Skip to content

Commit 30acf8a

Browse files
authored
Initial support for InterSystems IRIS data sources (#2987)
1 parent 8302a52 commit 30acf8a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

js/const.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,15 @@ define([
292292
SNOWFLAKE: {
293293
title: "Snowflake",
294294
dialect: "snowflake",
295-
},
295+
},
296296
SYNAPSE: {
297297
title: "Azure Synapse",
298298
dialect: "synapse",
299299
},
300+
IRIS: {
301+
title: "InterSystems IRIS",
302+
dialect: "iris",
303+
},
300304
};
301305

302306
const eventTypes = {

js/pages/configuration/sources/source-manager.js

+1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ define([
160160
{ id: 'spark', name: ko.i18n('configuration.viewEdit.dialect.options.spark', 'Spark')},
161161
{ id: 'snowflake', name: ko.i18n('configuration.viewEdit.dialect.options.snowflake', 'Snowflake')},
162162
{ id: 'synapse', name: ko.i18n('configuration.viewEdit.dialect.options.synapse', 'Azure Synapse') },
163+
{ id: 'iris', name: ko.i18n('configuration.viewEdit.dialect.options.iris', 'InterSystems IRIS') },
163164
];
164165

165166
this.sourceCaption = ko.computed(() => {

0 commit comments

Comments
 (0)