bruce wrote:
> 
> Patch applied.  Thanks.
> 
> I had to convert a lot of whitespace to tabs.  It wasn't just the
> whitespace, but whitespace that was 8 spaces.  I assume you are reading
> our code using an 8-space tab.  Please see the developer's FAQ and try
> to use tabs in future patches.  Thanks.

I have reverted this patch.  It was causing crashes in the ecpg
regression tests.  I think the problem was in scan.l:

+                       /* For Fetch/Move stmt, convert the string into int64 
value */
+                       if (strcmp(yylval.keyword, "fetch") == 0 ||
+                           strcmp(yylval.keyword, "move") == 0)
+                       {
+                               int64 int64Val;
+                               errno = 0;

This is code that was in the 'integer' section.  Why did you think you
could compare a non-assigned yylval at this stage?  Anyway, this isn't
going into 8.2.

---------------------------------------------------------------------------

> 
> Dhanaraj M wrote:
> > Hi Alvaro
> > 
> > Thanks for your valuable suggestions.
> > I made the changes as suggested earlier.
> > Please review again and comment on this.
> > I like to make changes if it is required.
> 
> 
> > 
> > ---------------------------(end of broadcast)---------------------------
> > TIP 2: Don't 'kill -9' the postmaster
> 
> -- 
>   Bruce Momjian   [EMAIL PROTECTED]
>   EnterpriseDB    http://www.enterprisedb.com
> 
>   + If your life is a hard drive, Christ can be your backup. +

-- 
  Bruce Momjian   [EMAIL PROTECTED]
  EnterpriseDB    http://www.enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +

---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings

Reply via email to