QUERY PLAN
GroupAggregate (cost=175.84..176.05 rows=6 width=214)
Group Key: ct.id
-> Merge Left Join (cost=175.84..175.88 rows=6 width=160)
Merge Cond: (ct.id = c.client_type)
-> Sort (cost=1.14..1.15 rows=6 width=150)
Sort Key: ct.id
-> Seq Scan on tbl_client_types ct (cost=0.00..1.06 rows=6 width=150)
-> Sort (cost=174.70..174.70 rows=1 width=14)
Sort Key: c.client_type
-> Nested Loop (cost=36.48..174.69 rows=1 width=14)
-> Bitmap Heap Scan on tbl_projects p (cost=36.20..166.39 rows=1 width=14)
Recheck Cond: ((created_by = ANY ('{5332,1001,5087,5467,5300,5311,5295,1013,5476,1004,1005,5449}'::integer[])) AND (created_by = 1001))
Filter: ((bargain_date >= '2026-01-01'::date) AND (bargain_date < '2027-01-01 00:00:00'::timestamp without time zone) AND (project_status = 3))
-> Bitmap Index Scan on tbl_projects_created_by_idx (cost=0.00..36.20 rows=79 width=0)
Index Cond: ((created_by = ANY ('{5332,1001,5087,5467,5300,5311,5295,1013,5476,1004,1005,5449}'::integer[])) AND (created_by = 1001))
-> Index Scan using tbl_clients_pkey on tbl_clients c (cost=0.28..8.29 rows=1 width=8)
Index Cond: (id = p.client_id)