mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
Consistend spelling for PL/pgSQL
This commit is contained in:
parent
a7ff4a7393
commit
1b6aa29a05
8
HISTORY
8
HISTORY
@ -276,7 +276,7 @@ Changes
|
|||||||
Allow IS or FOR key words in cursor declaration, for compatibility (Bruce)
|
Allow IS or FOR key words in cursor declaration, for compatibility (Bruce)
|
||||||
Fix for SELECT ... FOR UPDATE (Tom)
|
Fix for SELECT ... FOR UPDATE (Tom)
|
||||||
Fix for PERFORM returning multiple rows (Tom)
|
Fix for PERFORM returning multiple rows (Tom)
|
||||||
Make PL/PgSQL use the server's type coercion code (Tom)
|
Make PL/pgSQL use the server's type coercion code (Tom)
|
||||||
Memory leak fix (Jan, Tom)
|
Memory leak fix (Jan, Tom)
|
||||||
Make trailing semicolon optional (Tom)
|
Make trailing semicolon optional (Tom)
|
||||||
|
|
||||||
@ -459,7 +459,7 @@ Changes
|
|||||||
|
|
||||||
Remove unused WAL segements of large transactions (Tom)
|
Remove unused WAL segements of large transactions (Tom)
|
||||||
Multiaction rule fix (Tom)
|
Multiaction rule fix (Tom)
|
||||||
Pl/pgSQL memory allocation fix (Jan)
|
PL/pgSQL memory allocation fix (Jan)
|
||||||
VACUUM buffer fix (Tom)
|
VACUUM buffer fix (Tom)
|
||||||
Regression test fixes (Tom)
|
Regression test fixes (Tom)
|
||||||
pg_dump fixes for GRANT/REVOKE/comments on views, user-defined types (Tom)
|
pg_dump fixes for GRANT/REVOKE/comments on views, user-defined types (Tom)
|
||||||
@ -487,7 +487,7 @@ Migration to version 7.1.2
|
|||||||
|
|
||||||
Changes
|
Changes
|
||||||
|
|
||||||
Fix PL/PgSQL SELECTs when returning no rows
|
Fix PL/pgSQL SELECTs when returning no rows
|
||||||
Fix for psql backslash core dump
|
Fix for psql backslash core dump
|
||||||
Referential integrity permission fix
|
Referential integrity permission fix
|
||||||
Optimizer fixes
|
Optimizer fixes
|
||||||
@ -631,7 +631,7 @@ Changes
|
|||||||
Fix lpad() and rpad() to handle length less than input string (Tom)
|
Fix lpad() and rpad() to handle length less than input string (Tom)
|
||||||
Fix use of NOTIFY in some rules (Tom)
|
Fix use of NOTIFY in some rules (Tom)
|
||||||
Overhaul btree code (Tom)
|
Overhaul btree code (Tom)
|
||||||
Fix NOT NULL use in Pl/PgSQL variables (Tom)
|
Fix NOT NULL use in Pl/pgSQL variables (Tom)
|
||||||
Overhaul GIST code (Oleg)
|
Overhaul GIST code (Oleg)
|
||||||
Fix CLUSTER to preserve constraints and column default (Tom)
|
Fix CLUSTER to preserve constraints and column default (Tom)
|
||||||
Improved deadlock detection handling (Tom)
|
Improved deadlock detection handling (Tom)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.114 2002/01/31 18:31:44 momjian Exp $
|
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.115 2002/01/31 21:20:03 momjian Exp $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<appendix id="release">
|
<appendix id="release">
|
||||||
@ -378,7 +378,7 @@ Improve PL/pgSQL error reporting, including location of error (Tom)
|
|||||||
Allow IS or FOR key words in cursor declaration, for compatibility (Bruce)
|
Allow IS or FOR key words in cursor declaration, for compatibility (Bruce)
|
||||||
Fix for SELECT ... FOR UPDATE (Tom)
|
Fix for SELECT ... FOR UPDATE (Tom)
|
||||||
Fix for PERFORM returning multiple rows (Tom)
|
Fix for PERFORM returning multiple rows (Tom)
|
||||||
Make PL/PgSQL use the server's type coercion code (Tom)
|
Make PL/pgSQL use the server's type coercion code (Tom)
|
||||||
Memory leak fix (Jan, Tom)
|
Memory leak fix (Jan, Tom)
|
||||||
Make trailing semicolon optional (Tom)
|
Make trailing semicolon optional (Tom)
|
||||||
</literallayout>
|
</literallayout>
|
||||||
@ -585,7 +585,7 @@ Add new pg_resetxlog options (Bruce, Tom)
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
Remove unused WAL segements of large transactions (Tom)
|
Remove unused WAL segements of large transactions (Tom)
|
||||||
Multiaction rule fix (Tom)
|
Multiaction rule fix (Tom)
|
||||||
Pl/pgSQL memory allocation fix (Jan)
|
PL/pgSQL memory allocation fix (Jan)
|
||||||
VACUUM buffer fix (Tom)
|
VACUUM buffer fix (Tom)
|
||||||
Regression test fixes (Tom)
|
Regression test fixes (Tom)
|
||||||
pg_dump fixes for GRANT/REVOKE/comments on views, user-defined types (Tom)
|
pg_dump fixes for GRANT/REVOKE/comments on views, user-defined types (Tom)
|
||||||
@ -626,7 +626,7 @@ Cygwin build (Jason Tishler)
|
|||||||
|
|
||||||
<para>
|
<para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
Fix PL/PgSQL SELECTs when returning no rows
|
Fix PL/pgSQL SELECTs when returning no rows
|
||||||
Fix for psql backslash core dump
|
Fix for psql backslash core dump
|
||||||
Referential integrity permission fix
|
Referential integrity permission fix
|
||||||
Optimizer fixes
|
Optimizer fixes
|
||||||
@ -834,7 +834,7 @@ Fix OVERLAPS operators conform to SQL92 spec regarding NULLs (Tom)
|
|||||||
Fix lpad() and rpad() to handle length less than input string (Tom)
|
Fix lpad() and rpad() to handle length less than input string (Tom)
|
||||||
Fix use of NOTIFY in some rules (Tom)
|
Fix use of NOTIFY in some rules (Tom)
|
||||||
Overhaul btree code (Tom)
|
Overhaul btree code (Tom)
|
||||||
Fix NOT NULL use in Pl/PgSQL variables (Tom)
|
Fix NOT NULL use in Pl/pgSQL variables (Tom)
|
||||||
Overhaul GIST code (Oleg)
|
Overhaul GIST code (Oleg)
|
||||||
Fix CLUSTER to preserve constraints and column default (Tom)
|
Fix CLUSTER to preserve constraints and column default (Tom)
|
||||||
Improved deadlock detection handling (Tom)
|
Improved deadlock detection handling (Tom)
|
||||||
|
Loading…
Reference in New Issue
Block a user