File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,9 @@ public async Task SubQueryAsync()
171
171
[ Test ]
172
172
public async Task ThreeLevelSubqueryAsync ( )
173
173
{
174
+ if ( ! Dialect . SupportsScalarSubSelects )
175
+ Assert . Ignore ( "Dialect does not support scalar sub-select" ) ;
176
+
174
177
Person p = null ;
175
178
var detachedCriteria2 = DetachedCriteria . For < Person > ( "vf_inner_2" )
176
179
. SetProjection ( Projections . Id ( ) )
Original file line number Diff line number Diff line change @@ -160,6 +160,9 @@ public void SubQuery()
160
160
[ Test ]
161
161
public void ThreeLevelSubquery ( )
162
162
{
163
+ if ( ! Dialect . SupportsScalarSubSelects )
164
+ Assert . Ignore ( "Dialect does not support scalar sub-select" ) ;
165
+
163
166
Person p = null ;
164
167
var detachedCriteria2 = DetachedCriteria . For < Person > ( "vf_inner_2" )
165
168
. SetProjection ( Projections . Id ( ) )
You can’t perform that action at this time.
0 commit comments