I'm using Greenplum and I just want to create a function that performs 1 truncate and 2 selects. This is what I have but it is not working
CREATE OR REPLACE FUNCTION public.pe_GP3()
RETURNS void
LANGUAGE plpgsql
AS $function$
Begin
truncate table public.pe_new;
select public.peGP();
select public.peGP2();
END;
$function$