From d70d46fd6076171d9834f11af3a5d65ccc976289 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 29 Jul 2000 18:46:12 +0000 Subject: PATH and POLYGON datatypes are now TOASTable. Associated functions updated to new fmgr style. Deleted hoary old functions for compatibility with pre-6.1 representations of these datatypes. --- doc/src/sgml/datatype.sgml | 15 +-------------- doc/src/sgml/func.sgml | 42 ------------------------------------------ 2 files changed, 1 insertion(+), 56 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 8dda7ec5d63..07d7cec29b5 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1,5 +1,5 @@ @@ -1641,13 +1641,6 @@ January 8 04:05:06 1999 PST Paths are output using the first syntax. - Note that Postgres versions prior to - v6.1 used a format for paths which had a single leading parenthesis, - a "closed" flag, - an integer count of the number of points, then the list of points followed by a - closing parenthesis. - The built-in function upgradepath is supplied to convert - paths dumped and reloaded from pre-v6.1 databases. @@ -1687,12 +1680,6 @@ January 8 04:05:06 1999 PST Polygons are output using the first syntax. - Note that Postgres versions prior to - v6.1 used a format for polygons which had a single leading parenthesis, the list - of x-axis coordinates, the list of y-axis coordinates, - followed by a closing parenthesis. - The built-in function upgradepoly is supplied to convert - polygons dumped and reloaded from pre-v6.1 databases. diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 09524f8518d..2e7144b147b 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1423,48 +1423,6 @@ Not defined by this name. Implements the intersection operator '#' - - - - Geometric Upgrade Functions - - - - Function - Returns - Description - Example - - - - - isoldpath(path) - path - test path for pre-v6.1 form - isoldpath('(1,3,0,0,1,1,2,0)'::path) - - - revertpoly(polygon) - polygon - to pre-v6.1 - revertpoly('((0,0),(1,1),(2,0))'::polygon) - - - upgradepath(path) - path - to pre-v6.1 - upgradepath('(1,3,0,0,1,1,2,0)'::path) - - - upgradepoly(polygon) - polygon - to pre-v6.1 - upgradepoly('(0,1,2,0,1,0)'::polygon) - - - -
-
-- cgit v1.2.3