Re: Keyword list sanity check - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: Keyword list sanity check
Date
Msg-id 200904301640.n3UGe9V08141@momjian.us
Whole thread Raw
In response to Re: Keyword list sanity check  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-hackers
Robert Haas wrote:
> On Thu, Apr 30, 2009 at 3:27 AM, David Fetter <david@fetter.org> wrote:
> > On Tue, Apr 28, 2009 at 11:33:28AM +0300, Heikki Linnakangas wrote:
> >> I wrote a little perl script to perform a basic sanity check to
> >> keywords ?in gram.y and kwlist.h. It checks that all lists are in
> >> alphabetical ?order, all keywords present in gram.y are listed in
> >> kwlist.h in the ?right category, and conversely that all keywords
> >> listed in kwlist.h are ?listed in gram.y.
> >>
> >> It found one minor issue already:
> >>
> >> $ perl src/tools/check_keywords.pl 'SCHEMA' after 'SERVER' in
> >> unreserved_keyword list is misplaced
> >>
> >> SERVER is not in the right place in gram.y, it should go between
> >> SERIALIZABLE and SERVER. I'll fix that.
> >>
> >> I'll put this into src/tools. It's heavily dependent on the format
> >> of ?the lists in gram.y and kwlist.h but if it bitrots due to
> >> changes in ?those files, we can either fix it or just remove it if
> >> it's not deemed ?useful anymore.
> >
> > Please clean up this code at least to the point where it's
> > strict-clean, which means putting "use strict;" right after the
> > shebang line and not checking it in until it runs that way.
> 
> And "use warnings;", too.

I now see at the top of the CVS file:
#!/usr/bin/perl -wuse strict;

so it seems it has both now.

--  Bruce Momjian  <bruce@momjian.us>        http://momjian.us EnterpriseDB
http://enterprisedb.com
 + If your life is a hard drive, Christ can be your backup. +


pgsql-hackers by date:

Previous
From: Andy Lester
Date:
Subject: Re: Keyword list sanity check
Next
From: David Fetter
Date:
Subject: Re: Keyword list sanity check