Limit (cost=477.69..477.71 rows=10 width=540) |
-> Sort (cost=477.69..478.16 rows=191 width=540) |
Sort Key: s.set_top_at DESC NULLS LAST, (CASE WHEN s.is_complete THEN 3 WHEN ((NOT s.is_complete) AND (s.end_at <= now())) THEN 2 ELSE 1 END), (CASE WHEN s.is_complete THEN s.complete_at ELSE NULL::timestamp with time zone END) DESC, (CASE WHEN (NOT s.is_complete) THEN s.end_at ELSE NULL::timestamp with time zone END), s.created_at DESC |
-> HashAggregate (cost=470.69..473.56 rows=191 width=540) |
Group Key: s.id |
-> Nested Loop (cost=38.76..470.22 rows=191 width=520) |
-> Seq Scan on tbl_users u (cost=0.00..8.09 rows=1 width=4) |
Filter: ((id = 5300) AND (department_id = 1)) |
-> Hash Left Join (cost=38.76..460.22 rows=191 width=520) |
Hash Cond: (s.id = ccr.schedule_id) |
Filter: (((s.created_by = ANY ('{5300,5295,5295}'::integer[])) OR (ccr.user_id = 5295)) AND (((s.is_public = 1) AND (s.created_by <> 5295)) OR (s.created_by = 5295) OR (ccr.user_id = 5295))) |
-> Bitmap Heap Scan on tbl_schedules s (cost=20.24..434.08 rows=1027 width=520) |
Recheck Cond: (created_by = 5300) |
-> Bitmap Index Scan on tbl_schedules_created_by_idx (cost=0.00..19.99 rows=1027 width=0) |
Index Cond: (created_by = 5300) |
-> Hash (cost=10.45..10.45 rows=645 width=8) |
-> Seq Scan on tbl_schedule_carbon_copy_rels ccr (cost=0.00..10.45 rows=645 width=8) |