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 88fb970 commit 7b9ebafCopy full SHA for 7b9ebaf
src/NHibernate.Test/Pagination/PaginationFixture.cs
@@ -2,6 +2,7 @@
2
using System.Collections;
3
using NHibernate.Cfg;
4
using NHibernate.Criterion;
5
+using NHibernate.Dialect;
6
using NUnit.Framework;
7
using Environment=NHibernate.Cfg.Environment;
8
@@ -76,6 +77,10 @@ public void PagTest()
76
77
[Test]
78
public void PagingWithLock_NH2255()
79
{
80
+ if (Dialect is Oracle12cDialect)
81
+ Assert.Ignore(@"Oracle does not support row_limiting_clause with for_update_clause
82
+See: https://docs.oracle.com/database/121/SQLRF/statements_10002.htm#BABHFGAA");
83
+
84
using (ISession s = OpenSession())
85
using (ITransaction t = s.BeginTransaction())
86
0 commit comments