Skip to content
  • gmantele's avatar
    [TAP & UWS] 2 MAJOR BUGS FIXED (these bugs were affecting performances). · d9041712
    gmantele authored
    1) [TAP & UWS] ]MAJOR BUG FIX: The abortion of an SQL query is now correctly
    implemented. Before this fix, 2 mistakes prevented this clean abortion:
      a/ The thread was not cancelled because the SQL query execution was
    blocking the thread. Then the thread could not treat the interruption though
    it was flagged as interrupted.
      b/ The function UWSJob.isStopped() considered the job as stopped because
    the interrupted flag was set, even though the thread was still processing
    (and the database too). Because of that it returned true and the job phase
    was ABORTED though the thread was still running.
      NOW:
      a/ TAPJob calls the function Statement.cancel() (if supported) in order
    to cancel the SQL query execution properly inside the database.
      b/ The function UWSJob.isStopped() does not test any more the interrupted flag
    and returns true only if the thread is really stopped.
      IN BRIEF: It is now sure that a job in the phase ABORTED is really stopped
    (that's to say: thread stopped AND DB query execution stopped).
    
    2) [TAP] BUG FIX: When the writing of a result is abnormaly interrupted for any
    reason, the file which was being written is deleted.
    d9041712