Error while calling stored procedure in Postgres using Spring boot JPA – Postgresql
I have created a stored procedure in Postgres CREATE OR REPLACE PROCEDURE reset_disabled() LANGUAGE plpgsql AS $$ DECLARE BEGIN UPDATE regional_price_info SET disabled = NULL; END; $$; I tried to call procedure from the repository class in two ways however…