1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-18 17:42:25 +03:00

Update SQL keywords list to SQL:2016

Per previous convention (see
ace397e9d2), drop SQL:2008 and only keep
the latest two standards and SQL-92.

Note: SQL:2016-2 lists a large number of non-reserved keywords that
are really just information_schema column names related to new
features.  Those kinds of thing have not previously been listed as
keywords, and this was apparently done here by mistake, since these
keywords have been removed again in post-2016 working drafts.  So in
order to avoid bloating the keywords table unnecessarily, I have
omitted these erroneous keywords here.
This commit is contained in:
Peter Eisentraut
2019-05-14 09:56:40 +02:00
parent 356c83795a
commit c29ba98189
7 changed files with 95 additions and 7 deletions

View File

@ -6,7 +6,7 @@
use strict;
use warnings;
my @sql_versions = reverse sort ('1992', '2008', '2011');
my @sql_versions = reverse sort ('1992', '2011', '2016');
my $srcdir = $ARGV[0];