From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Tim Perdue <tim(at)sourceforge(dot)net> |
Cc: | Jeff Duffy <jduffy(at)greatbridge(dot)com>, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Re: SourceForge & Postgres (fwd) |
Date: | 2001-01-27 06:07:20 |
Message-ID: | 20646.980575640@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Tim Perdue <tim(at)sourceforge(dot)net> writes:
> Do we need to do a bunch of testing on Beta3 before deployment or is it
> so much more stable that it absolutely will have no problems?
Well, it's more stable than any pre-beta snapshot is likely to be ...
> We haven't had any problems with the ~Nov 17 snapshot, so we figure why mess
> with a good thing.
That RelFileNodeEquals bug absolutely *will* eat you for breakfast
sooner or later. If you want to live dangerously, stick with the
snapshot you have, but I beg you to apply this patch:
===================================================================
RCS file: /home/projects/pgsql/cvsroot/pgsql/src/include/storage/relfilenode.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -c -r1.3 -r1.4
*** pgsql/src/include/storage/relfilenode.h 2000/10/18 05:50:16 1.3
--- pgsql/src/include/storage/relfilenode.h 2001/01/09 02:15:16 1.4
***************
*** 17,22 ****
#define RelFileNodeEquals(node1, node2) \
((node1).relNode == (node2).relNode && \
! (node2).tblNode == (node2).tblNode)
#endif /* RELFILENODE_H */
--- 17,22 ----
#define RelFileNodeEquals(node1, node2) \
((node1).relNode == (node2).relNode && \
! (node1).tblNode == (node2).tblNode)
#endif /* RELFILENODE_H */
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Lincoln Yeoh | 2001-01-27 06:25:42 | Re: Re: MySQL has transactions |
Previous Message | Bruce Momjian | 2001-01-27 05:49:03 | reorder INSERT firing in rules |