Skip to content

Commit

Permalink
Initial support for InterSystems IRIS data sources (#2987)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeboe authored Feb 25, 2025
1 parent 8302a52 commit 30acf8a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion js/const.js
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,15 @@ define([
SNOWFLAKE: {
title: "Snowflake",
dialect: "snowflake",
},
},
SYNAPSE: {
title: "Azure Synapse",
dialect: "synapse",
},
IRIS: {
title: "InterSystems IRIS",
dialect: "iris",
},
};

const eventTypes = {
Expand Down
1 change: 1 addition & 0 deletions js/pages/configuration/sources/source-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ define([
{ id: 'spark', name: ko.i18n('configuration.viewEdit.dialect.options.spark', 'Spark')},
{ id: 'snowflake', name: ko.i18n('configuration.viewEdit.dialect.options.snowflake', 'Snowflake')},
{ id: 'synapse', name: ko.i18n('configuration.viewEdit.dialect.options.synapse', 'Azure Synapse') },
{ id: 'iris', name: ko.i18n('configuration.viewEdit.dialect.options.iris', 'InterSystems IRIS') },
];

this.sourceCaption = ko.computed(() => {
Expand Down

0 comments on commit 30acf8a

Please sign in to comment.