From 123c8efd896a951fabf96d000de78ecef2e3a6fd Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sat, 18 Oct 2008 00:35:32 +0000 Subject: Update feature list for SQL:2008. --- doc/src/sgml/features.sgml | 24 ++++++++++++------------ doc/src/sgml/mk_feature_tables.pl | 4 +++- 2 files changed, 15 insertions(+), 13 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/features.sgml b/doc/src/sgml/features.sgml index eae4ba5a11b..749a5635407 100644 --- a/doc/src/sgml/features.sgml +++ b/doc/src/sgml/features.sgml @@ -1,4 +1,4 @@ - + SQL Conformance @@ -14,10 +14,9 @@ The formal name of the SQL standard is ISO/IEC 9075 Database Language SQL. A revised version of the standard is released - from time to time; the most recent full update appearing in 2003, - with a partial update appearing in 2006. The 2003 version is - referred to as ISO/IEC 9075:2003, or simply as SQL:2003. The - versions prior to that were SQL:1999 and SQL-92. Each version + from time to time; the most recent update appearing in 2008. + The 2008 version is referred to as ISO/IEC 9075:2008, or simply as SQL:2008. + The versions prior to that were SQL:2003, SQL:1999, and SQL-92. Each version replaces the previous one, so claims of conformance to earlier versions have no official merit. PostgreSQL development aims for @@ -53,7 +52,8 @@ - The SQL:2003 standard is also split into a number + The SQL:2008 and SQL:2003 + standard versions are also split into a number of parts. Each is known by a shorthand name. Note that these parts are not consecutively numbered. @@ -79,18 +79,18 @@ - PostgreSQL supports most of the major features of SQL:2003. Out of - 164 mandatory features required for full Core conformance, - PostgreSQL conforms to at least 150. In addition, there is a long + PostgreSQL supports most of the major features of SQL:2008. Out of + 179 mandatory features required for full Core conformance, + PostgreSQL conforms to at least 160. In addition, there is a long list of supported optional features. It might be worth noting that at the time of writing, no current version of any database management - system claims full conformance to Core SQL:2003. + system claims full conformance to Core SQL:2008. In the following two sections, we provide a list of those features that PostgreSQL supports, followed by a - list of the features defined in SQL:2003 which + list of the features defined in SQL:2008 which are not yet supported in PostgreSQL. Both of these lists are approximate: There might be minor details that are nonconforming for a feature that is listed as supported, and @@ -133,7 +133,7 @@ Unsupported Features - The following features defined in SQL:2003 are not + The following features defined in SQL:2008 are not implemented in this release of PostgreSQL. In a few cases, equivalent functionality is available. diff --git a/doc/src/sgml/mk_feature_tables.pl b/doc/src/sgml/mk_feature_tables.pl index 7b4f45f3de1..5dad68b809d 100644 --- a/doc/src/sgml/mk_feature_tables.pl +++ b/doc/src/sgml/mk_feature_tables.pl @@ -1,6 +1,6 @@ # /usr/bin/perl -w -# $PostgreSQL: pgsql/doc/src/sgml/mk_feature_tables.pl,v 2.2 2006/03/11 04:38:30 momjian Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/mk_feature_tables.pl,v 2.3 2008/10/18 00:35:32 petere Exp $ my $yesno = $ARGV[0]; @@ -30,6 +30,8 @@ while () { $is_supported eq $yesno || next; + $feature_name =~ s//>/g; $subfeature_name =~ s//>/g; -- cgit v1.2.3