I have a query that takes a long time to complete. Assume that request A inititates such a query. Then another request B comes, from the same client, and inititates another instance of that query. I want the query initiated by request A aborted.
Note here that those queries are to an sqlite database.
The only way in which I can think of achieving what I want is to kill the thread that is handling request A. Is it possible to do this withing the PAW environment?