1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Rename make_keywords.README to make_keywords.

This commit is contained in:
Bruce Momjian
2001-11-26 22:41:58 +00:00
parent 8e75b36aeb
commit ea4f08ed49
3 changed files with 209 additions and 7 deletions

13
src/tools/make_keywords Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
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