]> granicus.if.org Git - postgresql/blob - src/tools/make_keywords
Some code review for xml.c:
[postgresql] / src / tools / make_keywords
1 #!/bin/sh
2
3 # $PostgreSQL: pgsql/src/tools/make_keywords,v 1.2 2006/03/11 04:38:41 momjian Exp $
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