mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Label CVS tip as 8.0devel instead of 7.5devel. Adjust various comments
and documentation to reference 8.0 instead of 7.5.
This commit is contained in:
@ -3,13 +3,13 @@ Frequently Asked Questions (FAQ) for PostgreSQL 7.3
|
||||
SCO UnixWare and OpenServer specific
|
||||
to be read in conjunction with the installation instructions
|
||||
============================================================
|
||||
last updated: $Date: 2004/05/20 04:19:26 $
|
||||
last updated: $Date: 2004/08/04 21:33:39 $
|
||||
|
||||
current maintainer: Billy G. Allie (Bill.Allie@mug.org)
|
||||
original author: Andrew Merrill (andrew@compclass.com)
|
||||
|
||||
|
||||
PostgreSQL 7.5 can be built on SCO UnixWare 7 and SCO OpenServer 5.
|
||||
PostgreSQL 8.0 can be built on SCO UnixWare 7 and SCO OpenServer 5.
|
||||
On OpenServer, you can use either the OpenServer Development Kit or
|
||||
the Universal Development Kit.
|
||||
|
||||
|
2
doc/TODO
2
doc/TODO
@ -1,6 +1,6 @@
|
||||
TODO list for PostgreSQL
|
||||
========================
|
||||
#A dash (-) marks changes that will appear in the upcoming 7.5 release.#
|
||||
#A dash (-) marks changes that will appear in the upcoming 8.0 release.#
|
||||
|
||||
Bracketed items "[]" have more detail.
|
||||
|
||||
|
@ -27,7 +27,7 @@ System Configuration
|
||||
|
||||
Operating System (example: Linux 2.4.18) :
|
||||
|
||||
PostgreSQL version (example: PostgreSQL-7.5): PostgreSQL-7.5
|
||||
PostgreSQL version (example: PostgreSQL-8.0): PostgreSQL-8.0
|
||||
|
||||
Compiler used (example: gcc 2.95.2) :
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.215 2004/08/03 20:32:31 tgl Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.216 2004/08/04 21:33:40 tgl Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
@ -2408,7 +2408,7 @@ cast(-44 as bit(12)) <lineannotation>111111010100</lineannotation>
|
||||
|
||||
<note>
|
||||
<para>
|
||||
Prior to <productname>PostgreSQL</productname> 7.5, casting an
|
||||
Prior to <productname>PostgreSQL</productname> 8.0, casting an
|
||||
integer to <type>bit(n)</> would copy the leftmost <literal>n</>
|
||||
bits of the integer, whereas now it copies the rightmost <literal>n</>
|
||||
bits. Also, casting an integer to a bit string width wider than
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.21 2004/03/09 16:57:47 neilc Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.22 2004/08/04 21:33:42 tgl Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
@ -141,14 +141,14 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable>table_name
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Prior to <productname>PostgreSQL</productname> 7.5, <command>CREATE
|
||||
Prior to <productname>PostgreSQL</productname> 8.0, <command>CREATE
|
||||
TABLE AS</command> always included OIDs in the table it
|
||||
produced. Furthermore, these OIDs were newly generated: they were
|
||||
distinct from the OIDs of any of the rows in the source tables of
|
||||
the <command>SELECT</command> or <command>EXECUTE</command>
|
||||
statement. Therefore, if <command>CREATE TABLE AS</command> was
|
||||
frequently executed, the OID counter would be rapidly
|
||||
incremented. As of <productname>PostgresSQL</productname> 7.5,
|
||||
incremented. As of <productname>PostgresSQL</productname> 8.0,
|
||||
the <command>CREATE TABLE AS</command> command allows the user to
|
||||
explicitely specify whether OIDs should be included. If the
|
||||
presence of OIDs is not explicitely specified,
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/select_into.sgml,v 1.28 2004/03/09 16:57:47 neilc Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/select_into.sgml,v 1.29 2004/08/04 21:33:42 tgl Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
@ -94,13 +94,13 @@ SELECT [ ALL | DISTINCT [ ON ( <replaceable class="PARAMETER">expression</replac
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Prior to <productname>PostgreSQL</> 7.5, the table created by
|
||||
Prior to <productname>PostgreSQL</> 8.0, the table created by
|
||||
<command>SELECT INTO</command> always included OIDs. Furthermore,
|
||||
these OIDs were newly generated: they were distinct from the OIDs
|
||||
of any of the rows in the source tables of the <command>SELECT
|
||||
INTO</command> statement. Therefore, if <command>SELECT
|
||||
INTO</command> was frequently executed, the OID counter would be
|
||||
rapidly incremented. As of <productname>PostgreSQL</> 7.5, the
|
||||
rapidly incremented. As of <productname>PostgreSQL</> 8.0, the
|
||||
inclusion of OIDs in the table created by <command>SELECT
|
||||
INTO</command> is controlled by the
|
||||
<xref linkend="guc-default-with-oids"> configuration variable. This
|
||||
|
@ -1,12 +1,12 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.276 2004/08/03 01:14:57 momjian Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.277 2004/08/04 21:33:40 tgl Exp $
|
||||
-->
|
||||
|
||||
<appendix id="release">
|
||||
<title>Release Notes</title>
|
||||
|
||||
<sect1 id="release-7-5">
|
||||
<title>Release 7.5</title>
|
||||
<title>Release 8.0</title>
|
||||
|
||||
<note>
|
||||
<title>Release date</title>
|
||||
@ -153,7 +153,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.276 2004/08/03 01:14:57 momjian
|
||||
</sect2>
|
||||
|
||||
<sect2>
|
||||
<title>Migration to version 7.5</title>
|
||||
<title>Migration to version 8.0</title>
|
||||
|
||||
<para>
|
||||
A dump/restore using <application>pg_dump</application> is
|
||||
@ -295,7 +295,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.276 2004/08/03 01:14:57 momjian
|
||||
|
||||
<para>
|
||||
Below you will find a detailed account of the changes between
|
||||
release 7.5 and the previous major release.
|
||||
release 8.0 and the previous major release.
|
||||
</para>
|
||||
|
||||
<sect3>
|
||||
@ -1011,7 +1011,7 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.276 2004/08/03 01:14:57 momjian
|
||||
|
||||
<listitem>
|
||||
<para>
|
||||
Warn of empty string being passes to oid/float4/float8 data types; 7.6
|
||||
Warn of empty string being passed to oid/float4/float8 data types; 8.1
|
||||
will throw an error instead (Neil)
|
||||
</para>
|
||||
</listitem>
|
||||
@ -3811,7 +3811,7 @@ DROP SCHEMA information_schema CASCADE;
|
||||
turns out to have disabled rule-related permissions checks in many
|
||||
not-so-corner cases. This would for example allow users to insert into views
|
||||
they weren't supposed to have permission to insert into. We have therefore
|
||||
reverted the 7.3.3 patch. The original bug will be fixed in 7.5.
|
||||
reverted the 7.3.3 patch. The original bug will be fixed in 8.0.
|
||||
</para></listitem>
|
||||
<listitem><para>Repair incorrect order of operations in
|
||||
GetNewTransactionId()</para>
|
||||
|
Reference in New Issue
Block a user