airborne12 opened a new pull request, #42348:
URL: https://github.com/apache/doris/pull/42348

   ## Proposed changes
   
   Fix case error as below
   ```
   Exception in 
fault_injection_p0/test_build_index_with_clone_fault.groovy(line 89):
   
   ADMIN SET REPLICA STATUS PROPERTIES("tablet_id" = "${tablet.TabletId}", 
"backend_id" = "${tablet.BackendId}", "status" = "drop");
   """
   // create index on table
   sql """ create index idx_k2 on ${tbl}(k2) using inverted """
   sql """ build index idx_k2 on ${tbl} """
   // sleep 5s to wait for the build index job report table is unstable
   sleep(5000)
   def show_build_index = sql_return_maparray("show build index where TableName 
= \"${tbl}\" ORDER BY JobId DESC LIMIT 1")
   assertEquals('WAITING_TXN', show_build_index[0].State)
   assertEquals('table is unstable', show_build_index[0].Msg)
   ^^^^^^^^^^^^^^^^^^^^^^^^^ERROR LINE^^^^^^^^^^^^^^^^^^^^^^^^^
   
   def state = wait_for_last_build_index_on_table_finish(tbl, timeout)
   assertEquals(state, "FINISHED")
   } finally
   
   { GetDebugPoint().disableDebugPointForAllBEs("EngineCloneTask.wait_clone") }
   }
   
   Exception:
   org.opentest4j.AssertionFailedError: expected: <table is unstable> but was: 
<>
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to