Tim Perdue <tim@sourceforge.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