mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
10 lines
363 B
Plaintext
10 lines
363 B
Plaintext
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
|