My database is huge, there are a lot of state_changed events …how to identify the identity(s) causing this? Maybe i can exclude them
thnx
My database is huge, there are a lot of state_changed events …how to identify the identity(s) causing this? Maybe i can exclude them
thnx
Take the event_id (1st column) and do
SELECT * FROM states WHERE event_id=<the_event_id>
to see associated state change with details.
ok, now i can filter it, thnx!