Remove croak and Perl_croak from gettext triggers. While we could
[PostgreSQL.git] / src / tools / make_keywords
blob629670633c2963df040566e8a8bcbc98788f83b1
1 #!/bin/sh
3 # $PostgreSQL$
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.
9 Then run sdif with the PostgreSQL keyword file first, then the SQL'92
10 keywords. Here is what I used:
12 sdif /tmp/pgkeywords tools/SQL_keywords |\
13 sed 's/</ /' | sed 's/>/ /'|sed 's/|/\
14 /' | sort -b +0
15 END