Remove make_keywords

It is not used anymore.
This commit is contained in:
Peter Eisentraut 2013-05-09 22:21:43 -04:00
parent 1c36700e9e
commit bd98852cbd
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
#!/bin/sh
# src/tools/make_keywords
cat <<END
To get a list of keywords compared to SQL'92, take the keywords out of
backend/parser/keywords.c and tools/SQL_keywords.
Then run sdif with the PostgreSQL keyword file first, then the SQL'92
keywords. Here is what I used:
sdif /tmp/pgkeywords tools/SQL_keywords |\
sed 's/</ /' | sed 's/>/ /'|sed 's/|/\
/' | sort -b +0
END