Skip to content

Commit 0068242

Browse files
committed
Added Postgresql 17 to Orm.config
Also added missing versions to StorageProviderVersion
1 parent 2f871a0 commit 0068242

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Orm/Xtensive.Orm.Tests.Framework/Orm.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@
7575
<domain name="pgsql160"
7676
connectionUrl="postgresql://dotest:dotest@localhost:54160/dotest" />
7777

78+
<domain name="pgsql170"
79+
connectionUrl="postgresql://dotest:dotest@localhost:54170/dotest" />
80+
7881
<domain name="oracle10"
7982
connectionUrl="oracle://dotest:dotest@localhost:5510/ora10" />
8083

@@ -173,6 +176,9 @@
173176
<domain name="pgsql160cs" provider="postgresql"
174177
connectionString="HOST=localhost;PORT=54160;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />
175178

179+
<domain name="pgsql170cs" provider="postgresql"
180+
connectionString="HOST=localhost;PORT=54170;DATABASE=dotest;USER ID=dotest;PASSWORD=dotest" />
181+
176182
<domain name="oracle10cs" provider="oracle"
177183
connectionString="DATA SOURCE=&quot;(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=5510))(CONNECT_DATA=(SERVICE_NAME=ora10)))&quot;;USER ID=dotest;PASSWORD=dotest" />
178184

Orm/Xtensive.Orm.Tests.Framework/StorageProviderVersion.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,15 @@ public static class StorageProviderVersion
3131
public static Version PostgreSql90 = new Version(9, 0);
3232
public static Version PostgreSql91 = new Version(9, 1);
3333
public static Version PostgreSql92 = new Version(9, 2);
34+
public static Version PostgreSql96 = new Version(9, 6);
3435
public static Version PostgreSql100 = new Version(10, 0);
3536
public static Version PostgreSql110 = new Version(11, 0);
3637
public static Version PostgreSql120 = new Version(12, 0);
38+
public static Version PostgreSql130 = new Version(13, 0);
39+
public static Version PostgreSql140 = new Version(14, 0);
40+
public static Version PostgreSql150 = new Version(15, 0);
41+
public static Version PostgreSql160 = new Version(16, 0);
42+
public static Version PostgreSql170 = new Version(17, 0);
3743

3844
public static Version MySql55 = new Version(5, 5);
3945
public static Version MySql56 = new Version(5, 6);

0 commit comments

Comments
 (0)