The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
CREATE OR REPLACE FUNCTION pop_last(text) RETURNS text
AS ' SELECT x.str[array_upper(x.str,1)] FROM (SELECT string_to_array($1,'','') as str) x; '
LANGUAGE sql;