Skip to content

Commit 3bf9bd0

Browse files
committed
Exclude SQLite from target storages for certain tests
It has problems with column changes, in this case with column rename of PK columns
1 parent 650cc64 commit 3bf9bd0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Orm/Xtensive.Orm.Tests/Upgrade/ConflictsByTable/ComplexTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ private class TypeIds
3838

3939
private TypeIds BuildInitialDomain(InheritanceSchema inheritanceSchema)
4040
{
41+
Require.ProviderIsNot(StorageProvider.Sqlite, "SQlite has some problems with table changes");
42+
4143
var domainConfig = DomainConfigurationFactory.Create();
4244
RegisterTypes(domainConfig, inheritanceSchema, "Original");
4345
domainConfig.UpgradeMode = DomainUpgradeMode.Recreate;

0 commit comments

Comments
 (0)