Hi @inbsp, I’m very sorry to hear you’re having trouble.
In a first step, can you try upgrading to a more recent version of n8n here? I just tried deleting a bunch of old executions on my own instance running [email protected] with a PostgreSQL database while having the Execution start filter set, this worked as it should.
Hi, @MutedJam
Finally got an opportunity to stop working process and update my n8n instance to 0.233.1.
But the problem persisted. Filters properly showing the results, but when I’m trying to select filtered executions, I can only select ALL the executions.
Hi @inbsp, I am so sorry for this. I’ve tried reproducing this once again using a fresh instance connected to a PostgeSQL database. This was my exact docker compose setup:
Selecting all visible executions by clicking the Checkbox next to “Name”
Selecting all executions by clicking the Checkbox next to “Select all n finished executions”
Clicking “Delete” and confirm the deletion
I did however not hit any error along the way. I wonder if this could be a problem with the data in your db, perhaps caused by an incomplete migration. Can you try manually clearing older executions by running a query like this (using a suitable WHERE clause if you need to keep some executions):
DELETE FROM execution_entity;
And confirm if the problem still persists for newer executions on your side? As with all database manipulations you might want to take a backup beforehand, just in case.