File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
presto-tests/src/test/java/com/facebook/presto/execution Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -401,11 +401,12 @@ public void testEagerPlanValidation()
401
401
QueryId secondQuery = createQuery (queryRunner , secondSession , LONG_LASTING_QUERY );
402
402
waitForQueryState (queryRunner , secondQuery , QUEUED );
403
403
404
+ // Force failure during plan validation after queuing has begun
405
+ triggerValidationFailure .set (true );
406
+
404
407
Session thirdSession = builder .setQueryId (QueryId .valueOf ("20240930_203743_00003_33333" )).build ();
405
408
QueryId thirdQuery = createQuery (queryRunner , thirdSession , LONG_LASTING_QUERY );
406
409
407
- // Force failure during plan validation after queuing has begun
408
- triggerValidationFailure .set (true );
409
410
waitForQueryState (queryRunner , thirdQuery , FAILED );
410
411
411
412
DispatchManager dispatchManager = queryRunner .getCoordinator ().getDispatchManager ();
You can’t perform that action at this time.
0 commit comments