aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/tools/make_keywords15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/tools/make_keywords b/src/tools/make_keywords
deleted file mode 100755
index abbbfe000f6..00000000000
--- a/src/tools/make_keywords
+++ /dev/null
@@ -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