Re: [HACKERS] Definition of function base_yylex in version 8.1.4

2007-10-27 Thread sayali k
Thanks a lot for these details Tom, I will checkout the scan.l file Best regards, Sayali Tom Lane <[EMAIL PROTECTED]> wrote: sayali k writes: > I am having a project in Postgres where I need to modify some code in the > parser section of the code base. During some analysis I came across a

Re: [HACKERS] Definition of function base_yylex in version 8.1.4

2007-10-27 Thread sayali k
I am trying to implement materialized views using trigger which will be used to maintain the views which will be generated. For this I am required to add a new command for the creation of a materialized view, which is already done by modifying the grammar in the gram.y file. However, I need to

Re: [HACKERS] Definition of function base_yylex in version 8.1.4

2007-10-27 Thread Tom Lane
sayali k <[EMAIL PROTECTED]> writes: > I am having a project in Postgres where I need to modify some code in the > parser section of the code base. During some analysis I came across a > function called "base_yylex" which is called in the function yylex in the > file parser.c. However, I was u