On Thu, 2006-07-13 at 00:50 -0400, Tom Lane wrote:
> This has broken two out of the four buildfarm members that reported
> in the last half hour :-( I think kudu does not like // comments,
> not sure what kookaburra is on about.
BTW, you've switched your animal names :) I fixed the C++-style comment.
Marko, can you take a look at what is causing this regression test
failure? The failing machine is kudu:
http://www.pgbuildfarm.org/cgi-bin/show_history.pl?nm=kudu&br=HEAD
The regression.diffs are:
*** ./expected/pgp-pubkey-decrypt.out Wed Jul 12 21:30:59 2006
--- ./results/pgp-pubkey-decrypt.out Wed Jul 12 21:39:15 2006
***************
*** 544,555 ****
-- password-protected secret key, wrong password
select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'foo')
from keytbl, encdata where keytbl.id=5 and encdata.id=1;
! ERROR: Corrupt data
-- password-protected secret key, right password
select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'parool')
from keytbl, encdata where keytbl.id=5 and encdata.id=1;
! pgp_pub_decrypt
! -----------------
! Secret msg
! (1 row)
!
--- 544,551 ----
-- password-protected secret key, wrong password
select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'foo')
from keytbl, encdata where keytbl.id=5 and encdata.id=1;
! ERROR: Unsupported cipher algorithm
-- password-protected secret key, right password
select pgp_pub_decrypt(dearmor(data), dearmor(seckey), 'parool')
from keytbl, encdata where keytbl.id=5 and encdata.id=1;
! ERROR: Unsupported cipher algorithm
-Neil