explain.depesz.com

PostgreSQL's explain analyze made readable

Result: T7bH

Settings
# exclusive inclusive rows x rows loops node
1. 0.001 0.022 ↓ 0.0 0 1

Limit (cost=15.07..15.07 rows=1 width=163) (actual time=0.021..0.022 rows=0 loops=1)

2. 0.004 0.021 ↓ 0.0 0 1

Sort (cost=15.07..15.07 rows=1 width=163) (actual time=0.021..0.021 rows=0 loops=1)

  • Sort Key: id DESC
  • Sort Method: quicksort Memory: 25kB
3. 0.017 0.017 ↓ 0.0 0 1

Index Scan using transaction_site_id_references_user_offset_index on transactions t0 (cost=0.42..15.06 rows=1 width=163) (actual time=0.017..0.017 rows=0 loops=1)

  • Index Cond: ((site_id = ANY ('{1,2,3}'::integer[])) AND ("references"[2] = '(USER,53)'::transaction_reference))
Planning time : 0.106 ms
Execution time : 0.043 ms