Skip to content

Commit

Permalink
TEIIDDES-2273 Upped the default version to Teiid 8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
blafond committed Aug 4, 2014
1 parent 22c51f6 commit e080fc0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ enum VersionID {

TEIID_8_6(EIGHT + DOT + SIX + DOT + ZERO),

TEIID_8_7(EIGHT + DOT + SEVEN + DOT + ZERO);
TEIID_8_7(EIGHT + DOT + SEVEN + DOT + ZERO),

TEIID_8_8(EIGHT + DOT + EIGHT + DOT + ZERO);

private final String id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,15 @@ public static enum Version {
*/
TEIID_8_7(VersionID.TEIID_8_7),

/**
* Teiid 8.8
*/
TEIID_8_8(VersionID.TEIID_8_7),

/**
* Default Teiid for this Designer
*/
TEIID_DEFAULT(VersionID.TEIID_8_7);
TEIID_DEFAULT(VersionID.TEIID_8_8);

private final ITeiidServerVersion version;

Expand Down

0 comments on commit e080fc0

Please sign in to comment.