Re: decode, base64 problem

From: gmail Vladimir Koković <vladimir(dot)kokovic(at)gmail(dot)com>
To: "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>
Cc: pgsql-novice <pgsql-novice(at)postgresql(dot)org>
Subject: Re: decode, base64 problem
Date: 2020-05-22 16:24:24
Message-ID: f9b25b09-d63b-0106-8bba-25b792e763d4@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice


On 22.5.20. 18:04, David G. Johnston wrote:
> What makes you believe that you should be able to get a decoded result
> after you've corrupted the encoded data?  You no longer have an
> encoded value, of any length, after doing substring - you now just
> have a sequence of five characters chosen from a subset of ASCII.
>
> David J.
>

OK, I realized my mistake, but now I have a problem again:

select

encode(substring(lice, 110, 5),'base64') as Lokal0,

length(encode(substring(lice, 110, 5),'base64')) as Len05,

decode(encode(substring(lice, 110, 5),'base64')) as Lokal0decode
from grupa002.ispp_partner
where obrisan=0 and maticnibroj=30643;

ERROR:  42883: function decode(text) does not exist
LINE 19: decode(encode(substring(lice, 110, 5),'base64')) as Lokal0de...
         ^
HINT:  No function matches the given name and argument types. You might
need to add explicit type casts.
LOCATION:  ParseFuncOrColumn, parse_func.c:247

Vladimir Kokovic, DP senior (69)
Serbia, Belgrade, May 22, 2020

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message David G. Johnston 2020-05-22 16:29:24 Re: decode, base64 problem
Previous Message David G. Johnston 2020-05-22 16:04:51 Re: decode, base64 problem