Re: encode/decode support for base64url - Mailing list pgsql-hackers

From Pavel Seleznev
Subject Re: encode/decode support for base64url
Date
Msg-id 174652131605.631.4433021944530218788.pgcf@coridan.postgresql.org
Whole thread Raw
In response to Re: encode/decode support for base64url  (Przemysław Sztoch <przemyslaw@sztoch.pl>)
List pgsql-hackers
Hi,

In the strings.sql file there is such code
SELECT encode('\x69b73eff', 'base64'); -- Expected: abc+/w==

In the strings.out file
+SELECT encode('\x69b73eff', 'base64'); -- Expected: abc+/w==
+ encode
+----------
+ abc+/w==
+(1 row)
+

maybe you should remove the additional description of the expected value in this way?

strings.sql
SELECT encode('\x69b73eff', 'base64') = "abc+/w=="

strings.out
SELECT encode('\x69b73eff', 'base64') = "abc+/w=="
----------
t
(1 row)

Regards,
Pavel

pgsql-hackers by date:

Previous
From: Dmitry Dolgov
Date:
Subject: Re: Changing shared_buffers without restart
Next
From: jian he
Date:
Subject: Re: doc pg_constraint.convalidated column description need update