Thread: Rules in Postgres
Hello,
I need a specific part of the PostgreSQL system. I just want the B+-tree index and the rule system code. Do you know how can I just get the source code for these two ?
Also, does the rule system of PostgreSQL supports realtime rule registration.
Any pointers on these questions would be appreciated.
Thanks,
Prachi
Do you Yahoo!?
Free Pop-Up Blocker - Get it now
Prachi Tyagi <prachityag@yahoo.com> writes: > I need a specific part of the PostgreSQL system. I just want the B+-tree index and the rule system code. Do you know howcan I just get the source code for these two ? src/backend/access/nbtree and src/backend/rewrite, but I think you will find that there are enough interdependencies with other parts of the backend that extracting either one as a "standalone" module would be quite painful. regards, tom lane PS: pgsql-committers is not the appropriate place for questions.