Re: CVS checkout source code for different branches - Mailing list pgsql-hackers

From M Z
Subject Re: CVS checkout source code for different branches
Date
Msg-id e824728e1002091935y26284792s8fae5ef2cfd4ac0f@mail.gmail.com
Whole thread Raw
In response to Re: CVS checkout source code for different branches  (M Z <jm80008@gmail.com>)
Responses Re: CVS checkout source code for different branches
Re: CVS checkout source code for different branches
List pgsql-hackers
Final, I tried:

$ cvs -z3 -d :pserver:anoncvs:password@anoncvs.postgresql.org:/projects/cvsroot co -r REL8_3_STABLE -P pgsql

Checked file configure.in. Around line 20, there is line:
 AC_INIT([PostgreSQL], [8.3.9], [pgsql-bugs@postgresql.org])

Not sure that indicates version 8.3.9?

But still, is there a testing/developing version for 8.3? I remember Alvaro made a patch to contrib/xml2/xpath.c. What is that version? and How can get this version? Is there a way I can list all branches / versions in CVS server?


*******************************************************************************
Index: contrib/xml2/xpath.c
==============================
=====================================
RCS file: /home/alvherre/Code/cvs/pgsql/contrib/xml2/xpath.c,v
retrieving revision 1.16.2.1
diff -c -p -r1.16.2.1 xpath.c
*** contrib/xml2/xpath.c        26 Mar 2008 01:19:11 -0000      1.16.2.1
--- contrib/xml2/xpath.c        27 Jan 2010 15:30:56 -0000
*************** xpath_table(PG_FUNCTION_ARGS)
*** 793,798 ****
--- 793,801 ----
  */
       pgxml_parser_init();

+       PG_TRY();
+       {
+
       /* For each row i.e. document returned from SPI */
       for (i = 0; i < proc; i++)
       {
*************** xpath_table(PG_FUNCTION_ARGS)
*** 929,934 ****
--- 932,944 ----
               if (xmldoc)
                       pfree(xmldoc);
       }
+       }
+       PG_CATCH();
+       {
+               xmlCleanupParser();
+               PG_RE_THROW();
+       }
+       PG_END_TRY();

       xmlCleanupParser();
 /* Needed to flag completeness in 7.3.1. 7.4 defines it as a no-op. */
*******************************************************************************


pgsql-hackers by date:

Previous
From: Takahiro Itagaki
Date:
Subject: TRUNCATE+COPY optimization and --jobs=1 in pg_restore
Next
From: Robert Haas
Date:
Subject: Re: Some belated patch review for "Buffers" explain analyze patch