Commit 8b23db94 authored by Tom Lane's avatar Tom Lane

Fix description of SQL-standard meaning of CREATE LOCAL TEMP TABLE.

I had this slightly wrong, as noted by Noah Misch.
parent c3bc76bd
...@@ -1306,10 +1306,11 @@ CREATE TABLE employees OF employee_type ( ...@@ -1306,10 +1306,11 @@ CREATE TABLE employees OF employee_type (
<para> <para>
The SQL standard also distinguishes between global and local temporary The SQL standard also distinguishes between global and local temporary
tables, where a local temporary table is only visible within a specific tables, where a local temporary table has a separate set of contents for
SQL module, though its definition is still shared across sessions. Since each SQL module within each session, though its definition is still shared
<productname>PostgreSQL</productname> does not support SQL modules, this across sessions. Since <productname>PostgreSQL</productname> does not
distinction is not relevant in <productname>PostgreSQL</productname>. support SQL modules, this distinction is not relevant in
<productname>PostgreSQL</productname>.
</para> </para>
<para> <para>
......
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