summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-07-29 18:46:12 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-07-29 18:46:12 +0000
commitd70d46fd6076171d9834f11af3a5d65ccc976289 (patch)
treef5d8c567427277b7508d0a43a5e3d11483953d38 /doc/src
parent1ebe1da296419b07377058ffad0e75bb330de8d1 (diff)
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.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/datatype.sgml15
-rw-r--r--doc/src/sgml/func.sgml42
2 files changed, 1 insertions, 56 deletions
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 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.31 2000/07/14 15:26:21 thomas Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.32 2000/07/29 18:45:51 tgl Exp $
-->
<chapter id="datatype">
@@ -1641,13 +1641,6 @@ January 8 04:05:06 1999 PST
<para>
Paths are output using the first syntax.
- Note that <productname>Postgres</productname> 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 <function>upgradepath</function> is supplied to convert
- paths dumped and reloaded from pre-v6.1 databases.
</para>
</sect2>
@@ -1687,12 +1680,6 @@ January 8 04:05:06 1999 PST
<para>
Polygons are output using the first syntax.
- Note that <productname>Postgres</productname> 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 <function>upgradepoly</function> is supplied to convert
- polygons dumped and reloaded from pre-v6.1 databases.
</para>
</sect2>
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 '#'
</tgroup>
</table>
</para>
-
- <para>
- <table tocentry="1">
- <title>Geometric Upgrade Functions</title>
- <tgroup cols="4">
- <thead>
- <row>
- <entry>Function</entry>
- <entry>Returns</entry>
- <entry>Description</entry>
- <entry>Example</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>isoldpath(path)</entry>
- <entry>path</entry>
- <entry>test path for pre-v6.1 form</entry>
- <entry>isoldpath('(1,3,0,0,1,1,2,0)'::path)</entry>
- </row>
- <row>
- <entry>revertpoly(polygon)</entry>
- <entry>polygon</entry>
- <entry>to pre-v6.1</entry>
- <entry>revertpoly('((0,0),(1,1),(2,0))'::polygon)</entry>
- </row>
- <row>
- <entry>upgradepath(path)</entry>
- <entry>path</entry>
- <entry>to pre-v6.1</entry>
- <entry>upgradepath('(1,3,0,0,1,1,2,0)'::path)</entry>
- </row>
- <row>
- <entry>upgradepoly(polygon)</entry>
- <entry>polygon</entry>
- <entry>to pre-v6.1</entry>
- <entry>upgradepoly('(0,1,2,0,1,0)'::polygon)</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- </para>
</sect1>
<sect1>