File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 10
10
11
11
using NHibernate . Cfg . MappingSchema ;
12
12
using NHibernate . Criterion ;
13
+ using NHibernate . Dialect ;
13
14
using NHibernate . Mapping . ByCode ;
14
15
using NHibernate . SqlCommand ;
15
16
using NHibernate . Transform ;
@@ -213,6 +214,9 @@ public async Task EntityProjectionAsSelectExpressionAsync()
213
214
[ Test ]
214
215
public async Task EntityProjectionLockModeAsync ( )
215
216
{
217
+ if ( Dialect is Oracle8iDialect )
218
+ Assert . Ignore ( "Oracle is not supported due to #1352 bug (NH-3902)" ) ;
219
+
216
220
var upgradeHint = Dialect . ForUpdateString ;
217
221
if ( string . IsNullOrEmpty ( upgradeHint ) )
218
222
upgradeHint = this . Dialect . AppendLockHint ( LockMode . Upgrade , string . Empty ) ;
Original file line number Diff line number Diff line change 1
1
using NHibernate . Cfg . MappingSchema ;
2
2
using NHibernate . Criterion ;
3
+ using NHibernate . Dialect ;
3
4
using NHibernate . Mapping . ByCode ;
4
5
using NHibernate . SqlCommand ;
5
6
using NHibernate . Transform ;
@@ -202,6 +203,9 @@ public void EntityProjectionAsSelectExpression()
202
203
[ Test ]
203
204
public void EntityProjectionLockMode ( )
204
205
{
206
+ if ( Dialect is Oracle8iDialect )
207
+ Assert . Ignore ( "Oracle is not supported due to #1352 bug (NH-3902)" ) ;
208
+
205
209
var upgradeHint = Dialect . ForUpdateString ;
206
210
if ( string . IsNullOrEmpty ( upgradeHint ) )
207
211
upgradeHint = this . Dialect . AppendLockHint ( LockMode . Upgrade , string . Empty ) ;
You can’t perform that action at this time.
0 commit comments