Skip to content

Commit

Permalink
Merge pull request #325 from intersystems-community/1.17.x
Browse files Browse the repository at this point in the history
Initial support for InterSystems IRIS (1.17.x)
  • Loading branch information
alex-odysseus authored Nov 28, 2024
2 parents 7875f85 + c04a84f commit 1aa7483
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public enum DBMSType {
HIVE("Apache Hive", "hive"),
SPARK("Spark", "spark"),
SNOWFLAKE("Snowflake", "snowflake"),
SYNAPSE("Azure Synapse", "synapse");
SYNAPSE("Azure Synapse", "synapse"),
IRIS("InterSystems IRIS", "iris");

private String label;
// For further pass into SqlRender.translateSql as "targetDialect" and DatabaseConnector as "dbms"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ private static ConnectionStringParser getParser(DBMSType dbmsType) {
case SYNAPSE:
case PDW:
case SNOWFLAKE:
case IRIS:
return new GenericParser();
case REDSHIFT:
return new RedshiftParser();
Expand Down

0 comments on commit 1aa7483

Please sign in to comment.