Re: [Spacewalk-devel] PATCH: make NVL work in PostgreSQL

2010-10-04 Thread Jan Pazdziora
On Tue, Aug 10, 2010 at 08:31:19PM +0800, Colin Coe wrote: Hi all Attached is a patch that makes the NVL errors GoAway(tm). Pushed, thanks. -- Jan Pazdziora Principal Software Engineer, Satellite Engineering, Red Hat ___ Spacewalk-devel mailing

Re: [Spacewalk-devel] PATCH: make NVL work in PostgreSQL

2010-10-04 Thread Jan Pazdziora
On Tue, Aug 10, 2010 at 09:12:07PM +0800, Colin Coe wrote: + +create or replace +function decode(value anyelement, s1 anyelement, r1 anyelement, def anyelement) returns anyelement +as +$$ +select case + when +$1=$2 + then +$3 + else +$4 +end; +$$ +LANGUAGE SQL;

Re: [Spacewalk-devel] PATCH: Repogeneration for debian channels is broken

2010-10-04 Thread Miroslav Suchý
On 10/02/2010 12:31 PM, Simon Lukasik wrote: Hello list, There are few issues with repo generation for Debian channels: * Process will not complete for most of the cases, because FileNotFoundException is thrown, but rhn_taskomatic_daemon.log is silent. * When Debian channel is deleted,

Re: [Spacewalk-devel] PATCH: make NVL work in PostgreSQL

2010-10-04 Thread Tom Lane
Jan Pazdziora jpazdzi...@redhat.com writes: On Tue, Aug 10, 2010 at 09:12:07PM +0800, Colin Coe wrote: +create or replace +function decode(value anyelement, s1 anyelement, r1 anyelement, def anyelement) returns anyelement +as +$$ +select case + when +$1=$2 + then +$3 +