aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-09-04 17:25:08 +0000
committerBruce Momjian <bruce@momjian.us>2002-09-04 17:25:08 +0000
commitb1e20bd707fab3a2d1483e4ff63ac3c1315f76ba (patch)
tree8440c693e864343fdd5bfb1e467c1ea6e4eb0357
parentfc99311b9a446af0163bea21350a372cbf4db16a (diff)
downloadpostgresql-b1e20bd707fab3a2d1483e4ff63ac3c1315f76ba.tar.gz
postgresql-b1e20bd707fab3a2d1483e4ff63ac3c1315f76ba.zip
More HISTORY improvements from Joe.
-rw-r--r--HISTORY9
1 files changed, 6 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index c5df9798f37..f6246161bb2 100644
--- a/HISTORY
+++ b/HISTORY
@@ -22,9 +22,9 @@ Overview
Table Functions
- Functions can now return entire tables, with multiple rows
- and multiple columns. You can specify these functions in
- the SELECT FROM clause.
+ Functions can now return sets, with multiple rows
+ and multiple columns. You specify these functions in
+ the SELECT FROM clause, similar to a table or view.
Privileges
@@ -274,6 +274,9 @@ Add OVERLAY(), which allows substitution of a substring in a string (Thomas)
Add SIMILAR TO as a synonym for our existing operator "~" (Thomas)
Add regular expression SUBSTRING(string FROM pat FOR escape) (Thomas)
Add LOCALTIME and LOCALTIMESTAMP functions (Thomas)
+Add named composite types using CREATE TYPE typename AS (column) (Joe)
+Allow composite type definition in the table alias clause (Joe)
+Add new API to simplify creation of C language table functions (Joe)
Remove ODBC-compatible empty parentheses from calls to SQL99 functions
for which these parentheses do not match the standar (Thomas)
Add appendix in the User's Guide which lists SQL92 features (Thomas)