Commit 5e86bb51 authored by Peter Eisentraut's avatar Peter Eisentraut

doc: Update compatibility claim

Update outdated claim that TRUNCATE is a PostgreSQL extension.

Add cross-links between DELETE and TRUNCATE references pages.
parent cb5fa413
...@@ -41,8 +41,7 @@ DELETE FROM [ ONLY ] <replaceable class="PARAMETER">table_name</replaceable> [ * ...@@ -41,8 +41,7 @@ DELETE FROM [ ONLY ] <replaceable class="PARAMETER">table_name</replaceable> [ *
<tip> <tip>
<para> <para>
<xref linkend="sql-truncate"> is a <xref linkend="sql-truncate"> provides a
<productname>PostgreSQL</productname> extension that provides a
faster mechanism to remove all rows from a table. faster mechanism to remove all rows from a table.
</para> </para>
</tip> </tip>
...@@ -279,4 +278,12 @@ DELETE FROM tasks WHERE CURRENT OF c_tasks; ...@@ -279,4 +278,12 @@ DELETE FROM tasks WHERE CURRENT OF c_tasks;
to use <literal>WITH</> with <command>DELETE</>. to use <literal>WITH</> with <command>DELETE</>.
</para> </para>
</refsect1> </refsect1>
<refsect1>
<title>See Also</title>
<simplelist type="inline">
<member><xref linkend="sql-truncate"></member>
</simplelist>
</refsect1>
</refentry> </refentry>
...@@ -220,4 +220,12 @@ TRUNCATE othertable CASCADE; ...@@ -220,4 +220,12 @@ TRUNCATE othertable CASCADE;
considered and compared with other implementations if necessary. considered and compared with other implementations if necessary.
</para> </para>
</refsect1> </refsect1>
<refsect1>
<title>See Also</title>
<simplelist type="inline">
<member><xref linkend="sql-delete"></member>
</simplelist>
</refsect1>
</refentry> </refentry>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment