~aglenyoung/+junk/postgres-9.3-dtrace

« back to all changes in this revision

Viewing changes to src/tools/make_keywords

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Christoph Berg, Martin Pitt
  • Date: 2013-06-26 15:13:32 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130626151332-p34yjpn0txbdsdzd
Tags: 9.3~beta2-1
[ Christoph Berg ]
* hurd-i386: Ignore testsuite failures so we have a working libpq5 (they
  don't implement semaphores so the server won't even start).
* Mark postgresql-9.3 as beta in the description, suggested by Joshua D.
  Drake.

[ Martin Pitt ]
* New upstream release 9.3 beta2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
# src/tools/make_keywords
4
 
 
5
 
cat <<END
6
 
To get a list of keywords compared to SQL'92, take the keywords out of
7
 
backend/parser/keywords.c and tools/SQL_keywords.
8
 
 
9
 
Then run sdif with the PostgreSQL keyword file first, then the SQL'92
10
 
keywords.  Here is what I used:
11
 
 
12
 
sdif /tmp/pgkeywords tools/SQL_keywords |\
13
 
sed 's/</ /' | sed 's/>/ /'|sed 's/|/\
14
 
                                        /' | sort -b +0
15
 
END