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 1010
1111using NHibernate . Cfg . MappingSchema ;
1212using NHibernate . Criterion ;
13+ using NHibernate . Dialect ;
1314using NHibernate . Mapping . ByCode ;
1415using NHibernate . SqlCommand ;
1516using NHibernate . Transform ;
@@ -213,6 +214,9 @@ public async Task EntityProjectionAsSelectExpressionAsync()
213214 [ Test ]
214215 public async Task EntityProjectionLockModeAsync ( )
215216 {
217+ if ( Dialect is Oracle8iDialect )
218+ Assert . Ignore ( "Oracle is not supported due to #1352 bug (NH-3902)" ) ;
219+
216220 var upgradeHint = Dialect . ForUpdateString ;
217221 if ( string . IsNullOrEmpty ( upgradeHint ) )
218222 upgradeHint = this . Dialect . AppendLockHint ( LockMode . Upgrade , string . Empty ) ;
Original file line number Diff line number Diff line change 11using NHibernate . Cfg . MappingSchema ;
22using NHibernate . Criterion ;
3+ using NHibernate . Dialect ;
34using NHibernate . Mapping . ByCode ;
45using NHibernate . SqlCommand ;
56using NHibernate . Transform ;
@@ -202,6 +203,9 @@ public void EntityProjectionAsSelectExpression()
202203 [ Test ]
203204 public void EntityProjectionLockMode ( )
204205 {
206+ if ( Dialect is Oracle8iDialect )
207+ Assert . Ignore ( "Oracle is not supported due to #1352 bug (NH-3902)" ) ;
208+
205209 var upgradeHint = Dialect . ForUpdateString ;
206210 if ( string . IsNullOrEmpty ( upgradeHint ) )
207211 upgradeHint = this . Dialect . AppendLockHint ( LockMode . Upgrade , string . Empty ) ;
You can’t perform that action at this time.
0 commit comments