6
Has anyone been through the Postgres issue to error the Code Base64? I have the following call that informs [Err] ERROR: end of sequence is invalid
convert_from(decode('YnJhc2lsc2VtbGVp', 'base64'), 'UTF8')
Remembering where I am 'Ynjhc2lsc2vtbgvp' I’m using a variable, so it looks like this
convert_from(decode(variavel, 'base64'), 'UTF8')
Probably missed the
==
at the end of the sequence:convert_from(decode('YnJhc2lsc2VtbGVp==', 'base64'), 'UTF8')
– Vinícius Gobbo A. de Oliveira
@Jorgekania You talk about such a
variavel
but does not mention its type or content. This information is crucial for the understanding and explanation of your question.– Lacobus