I would use date_trunc to filter the year rather than extract.
SELECT
p.product_name
,SUM(s.sale_amount) AS total_sales
FROM
Sales s
JOIN Product p
ON s.product_id = p.product_id
WHERE
s.sale_date >= DATE_TRUNC('year', CURRENT_DATE)
GROUP BY
p.product_name