11<!--
2- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian Exp $
2+ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.270 2004/07/26 00:26:42 momjian Exp $
33-->
44
55<appendix id="release">
@@ -32,8 +32,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
3232 installer project has been created to ease installation, <ulink
3333 url="http://pgfoundry.org/projects/pginstaller">
3434 http://pgfoundry.org/projects/pginstaller</ulink>. This release
35- supports Windows NT 4 and all later releases. It does not
36- support earlier releases like Windows 95, 98, or ME because
35+ supports NT-based Windows releases like NT4, Win2k, XP, Win2003.
36+ Older releases like Windows 95, 98, and ME are not supported because
3737 these operating systems do not have the infrastructure to
3838 support PostgreSQL.
3939 </para>
@@ -169,57 +169,52 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
169169 <itemizedlist>
170170 <listitem>
171171 <para>
172- GUC parameters SortMem and VacuumMem have been renamed to
173- work_mem and maintenance_work_mem to better reflect their use.
174- The original names still supported.
172+ Server configuration parameters SortMem and VacuumMem have been
173+ renamed to work_mem and maintenance_work_mem to better reflect
174+ their use. The original names still supported.
175175 </para>
176176 </listitem>
177177
178178 <listitem>
179179 <para>
180- GUC parameters log_pid, log_timestamp, and log_source_port have been
181- removed now that a more flexible log_line_prefix has been added.
180+ Server configuration parameters log_pid, log_timestamp, and
181+ log_source_port have been removed now that a more flexible
182+ log_line_prefix has been added.
182183 </para>
183184 </listitem>
184185
185186 <listitem>
186187 <para>
187- GUC parameters virtual_host and tcpip_socket have been replaced
188- with a more general listen_addresses. Also, the server now
189- listens on localhost by default, which eliminates the need for
190- the -i postmaster switch in many scenarios.
188+ Server configuration parameters virtual_host and tcpip_socket
189+ have been replaced with a more general listen_addresses. Also,
190+ the server now listens on localhost by default, which eliminates
191+ the need for the -i postmaster switch in many scenarios.
191192 </para>
192193 </listitem>
193194
194195 <listitem>
195196 <para>
196- GUC parameter syslog has been removed and replaced with a more
197- logical log_destination variable to control the log output
198- destination.
197+ Server configuration parameter syslog has been removed and
198+ replaced with a more logical log_destination variable to control
199+ the log output destination.
199200 </para>
200201 </listitem>
201202
202203 <listitem>
203204 <para>
204- GUC parameter log_statement has been changed so it can restrict
205- logging of just database modification or data definition
206- statements.
205+ Server configuration parameter log_statement has been changed so
206+ it can restrict logging of just database modification or data
207+ definition statements.
207208 </para>
208209 </listitem>
209210
210211 <listitem>
211212 <para>
212- GUC parameter max_expr_depth parameter has been replaced with
213- max_stack_depth which measures the stack size rather than the
214- number of stack levels used. This helps prevent session
215- termination due to stack overflow caused by recursive functions.
216- </para>
217- </listitem>
218-
219- <listitem>
220- <para>
221- When matching GROUP BY names, prefer local FROM columns first, then SELECT
222- aliases, and FROM columns in upper subqueries.
213+ Server configuration parameter max_expr_depth parameter has been
214+ replaced with max_stack_depth which measures the stack size
215+ rather than the number of stack levels used. This helps prevent
216+ session termination due to stack overflow caused by recursive
217+ functions.
223218 </para>
224219 </listitem>
225220
@@ -315,9 +310,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
315310 </para>
316311 <para>
317312 Before this change some queries would not use an index if the data
318- types did not exactly match. This improvement makes index usage more
313+ types did not match exactly . This improvement makes index usage more
319314 intuitive and consistent.
320- match exactly
321315 </para>
322316 </listitem>
323317
@@ -355,23 +349,6 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
355349 </para>
356350 </listitem>
357351
358- <listitem>
359- <para>
360- Optimizer improvements and subquery fixes (Tom)
361- </para>
362- <para>
363- It is difficult to explain all the optimizer improvements that go
364- into a release like this. They involve complex adjustments to the
365- logic used to select indexes, join methods, and join order. They
366- are difficult to explain, but the result is that the optimizer
367- make quicker and better choices in how to execute queries,
368- resulting in improved performance. The close relationship between
369- our developers and users reporting problems allows us to make
370- rapid and complex optimizer improvements that would be very
371- difficult for lose-source companies to emulate.
372- </para>
373- </listitem>
374-
375352 <listitem>
376353 <para>
377354 Improve btree index performance for duplicate keys (Dmitry Tkach, Tom)
@@ -527,9 +504,9 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
527504
528505 <listitem>
529506 <para>
530- Add new read-only GUC variables to query server compile-time
531- setting func_max_args, index_max_keys, namedatalen, blcksz ,
532- have_int64_timestamp (Joe)
507+ Add new read-only server configuration parameter to query server
508+ compile-time setting func_max_args, index_max_keys, namedatalen,
509+ blcksz, have_int64_timestamp (Joe)
533510 </para>
534511 </listitem>
535512
@@ -548,8 +525,9 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
548525
549526 <listitem>
550527 <para>
551- Rename GUC parameters SortMem and VacuumMem to work_mem and
552- maintenance_work_mem (Old names still supported) (Tom)
528+ Rename server configuration parameters SortMem and VacuumMem to
529+ work_mem and maintenance_work_mem (Old names still supported)
530+ (Tom)
553531 </para>
554532 <para>
555533 This change was made to clarify that index creation uses
@@ -560,14 +538,15 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
560538
561539 <listitem>
562540 <para>
563- Allow logging of session disconnections using GUC log_disconnections (Andrew)
541+ Allow logging of session disconnections using server configuration
542+ log_disconnections (Andrew)
564543 </para>
565544 </listitem>
566545
567546 <listitem>
568547 <para>
569- Add new GUC parameter to report useful session information at the
570- start of each log line (Andrew)
548+ Add new server configuration parameter log_line_prefix to report useful
549+ session information at the start of each log line (Andrew)
571550 </para>
572551 <para>
573552 Information includes user name, database name, remote IP address,
@@ -577,15 +556,16 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
577556
578557 <listitem>
579558 <para>
580- Remove GUC log_pid, log_timestamp, log_source_port;
581- functionality superseded by log_line_prefix (Andrew)
559+ Remove server configuration parameter log_pid, log_timestamp,
560+ log_source_port; functionality superseded by log_line_prefix
561+ (Andrew)
582562 </para>
583563 </listitem>
584564
585565 <listitem>
586566 <para>
587567 Replace the virtual_host and tcpip_socket parameters with a unified
588- listen_addresses parameter (Tom)
568+ listen_addresses parameter (Andrew, Tom)
589569 </para>
590570 </listitem>
591571
@@ -603,15 +583,16 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
603583
604584 <listitem>
605585 <para>
606- Remove 'syslog' GUC variable, and add more logical 'log_destination'
607- variable to control log output location (Magnus)
586+ Remove 'syslog' server configuration parameter, and add more
587+ logical 'log_destination' variable to control log output location
588+ (Magnus)
608589 </para>
609590 </listitem>
610591
611592 <listitem>
612593 <para>
613- Change GUC log_statement to take values "all, mod, ddl, none" which
614- controls the queries output (Bruce)
594+ Change server configuration parameter log_statement to take values
595+ "all, mod, ddl, none" which controls the queries output (Bruce)
615596 </para>
616597 <para>
617598 This allows administrators to log only data definition changes or
@@ -628,7 +609,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
628609 <listitem>
629610 <para>
630611 Allow configuration files to be placed outside the data directory using
631- GUC variables (mlw)
612+ server configuration parameters (mlw)
632613 </para>
633614 <para>
634615 By default, configuration files sit in the top server directory.
@@ -678,7 +659,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
678659
679660 <listitem>
680661 <para>
681- Implement dollar quoting to simplify single-quote usage (Andrew)
662+ Implement dollar quoting to simplify single-quote usage (Andrew, Tom,
663+ David Fetter)
682664 </para>
683665 <para>
684666 In previous releases, because single quotes had to be used to
@@ -720,17 +702,6 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
720702 </para>
721703 </listitem>
722704
723- <listitem>
724- <para>
725- When matching GROUP BY names, prefer local FROM columns first, then SELECT
726- aliases, and then outer FROM columns (Tom)
727- </para>
728- <para>
729- This change was made because it is considered more consistent than
730- the previous behavior.
731- </para>
732- </listitem>
733-
734705 <listitem>
735706 <para>
736707 Change EXECUTE to return a completion tag matching the executed statement
@@ -780,8 +751,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
780751
781752 <listitem>
782753 <para>
783- Add new GUC default_with_oids to control the oid default during table
784- creation (Neil)
754+ Add new server configuration parameter default_with_oids to
755+ control the oid default during table creation (Neil)
785756 </para>
786757 <para>
787758 This allows administrators to default all CREATE TABLE commands to
@@ -1512,6 +1483,12 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
15121483 </para>
15131484 </listitem>
15141485
1486+ <listitem>
1487+ <para>
1488+ psql now uses a lexical analyzer to process command strings
1489+ </para>
1490+ </listitem>
1491+
15151492 <listitem>
15161493 <para>
15171494 New linked list data structure implementation (Neil)
@@ -1524,7 +1501,8 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.269 2004/07/25 04:18:05 momjian
15241501
15251502 <listitem>
15261503 <para>
1527- Allow external interfaces to create their own GUC variables (Thomas
1504+ Allow external interfaces to create their own server configuration
1505+ parameters (Thomas
15281506 Hallgren)
15291507 </para>
15301508 </listitem>
@@ -2242,7 +2220,7 @@ DROP SCHEMA information_schema CASCADE;
22422220 <para>
22432221 The server-side autocommit setting was removed and
22442222 reimplemented in client applications and languages.
2245- Server -side autocommit was causing too many problems with
2223+ server -side autocommit was causing too many problems with
22462224 languages and applications that wanted to control their own
22472225 autocommit behavior, so autocommit was removed from the server
22482226 and added to individual client APIs as appropriate.
0 commit comments