Arguile wrote:> EXECUTE ''DROP '' || obj.type || '' '' || obj.name;
This should be:
EXECUTE ''DROP '' || obj.type || '' "'' || obj.name || ''"'';
As the first one experiences case folding. Sorry about that.