Unexpected all null rows output with missing columns when running query (designed and tested on pgadmin) on Supabase SQL Editor. I already checked an both tables have RLS disabled and no constraints or references on either table despite the pk in the column name The query in question is this one
SELECT * FROM temp_insumos_corregidos t
LEFT JOIN insumo_corregido i
ON (TRIM(i.insumo) = TRIM(t.nombre_anterior) OR TRIM(i.nombre_anterior) = TRIM(t.nombre_anterior))
WHERE i.pk_insumo IS NULL;
This is the pgAdmin output pgAdmin
This is the Supabase output Supabase