Re: [HACKERS] code documentation

2007-10-04 Thread Uma Krishnan
Also Doxygen docs are greatly help. You can generate them yourself for the 
latest or obtain them from doxygen.postgresql.org. I found doxygen and the FAQ 
internals to be most useful.



Alvaro Herrera [EMAIL PROTECTED] wrote: Islam Hegazy escribi�:
 Hi all

 I wonder if there is a PostgreSQL code documentation that may help in 
 understanding the code.

Yes.  There is the developer's FAQ, then there is the internals
chapter in the official docs, then there's the various README's
sprinkled throughout the code, and finally there's the comments in the
code itself.

-- 
Alvaro Herrerahttp://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq



[HACKERS] Postgres SQL Parser

2007-04-22 Thread Uma Krishnan
Hello I'm trying to implement a new SortMerge algorithm, and see how it 
compares with the current algorithm. In doing so, rather than using select, I'd 
like to introduce a new verb so that Select is not modified. 
   
  I looked at the source code, but could find the place where Postgres SQL 
grammer is defined. 
   
  Please help.
   
  Thanks