Hi Marco,
On 27 Mar 2022, at 12:54, Marco Lechner wrote:
> Hi,
>
> Does anyone here know, if postgresql supports DIN SPEC 91379 encoding?
>
> As far as I understand it is a “new” encoding supporting all “EU characters”
> based on Unicode, but is not compliant to UTF-8. As far as I di dread, the
On 16 Feb 2022, at 14:36, Alexander Farber wrote:
> Ah, I have to do
>
> RETURN '___WRONG___';
Not necessarily.
> and not
>
> out_text := '___WRONG___'
> RETURN;
You must rather end the assignment with a semicolon:
out_text := '___WRONG___';
RETURN;
Otherwise what