We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e8516e commit d19d882Copy full SHA for d19d882
src/NHibernate.Test/TypesTest/StringTypeWithLengthFixture.cs
@@ -66,6 +66,12 @@ public void NhThrowsOnTooLong()
66
[Test]
67
public void DbThrowsOnTooLong()
68
{
69
+ // Note: This test could possible be written as
70
+ // "database must raise an error OR it must store and return the full value"
71
+ // to avoid this dialect specific exception.
72
+ if (Dialect is SQLiteDialect)
73
+ Assert.Ignore("SQLite does not enforce specified string lengths.");
74
+
75
Assert.Throws<GenericADOException>(
76
() =>
77
0 commit comments