From 735614c1cf217bba83b135b9412bff4a6df684f6 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 13 Dec 2003 16:57:36 +0000 Subject: Stamp 7.4.1. Update 7.4.1 FAQ's to current. --- doc/src/FAQ/FAQ.html | 10 ++++------ doc/src/FAQ/FAQ_DEV.html | 4 ++-- 2 files changed, 6 insertions(+), 8 deletions(-) (limited to 'doc/src') diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index 52b11dd0eb5..764d2d82d09 100644 --- a/doc/src/FAQ/FAQ.html +++ b/doc/src/FAQ/FAQ.html @@ -10,7 +10,7 @@ alink="#0000ff">

Frequently Asked Questions (FAQ) for PostgreSQL

-

Last updated: Sat Nov 15 23:41:03 EST 2003

+

Last updated: Sat Nov 29 23:54:03 EST 2003

Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -326,7 +326,7 @@

1.7) What is the latest release?

-

The latest release of PostgreSQL is version 7.3.4.

+

The latest release of PostgreSQL is version 7.4.

We plan to have major releases every six to eight months.

@@ -554,8 +554,7 @@

Yes, there are several graphical interfaces to PostgreSQL available. These include PgAccess http://www.pgaccess.org), PgAdmin III (http://www.pgadmin.org, - Win32-only), RHDB Admin (http://www.pgadmin.org, RHDB Admin (http://sources.redhat.com/rhdb/ ) and Rekall ( http://www.thekompany.com/products/rekall/, proprietary). There is @@ -1102,7 +1101,7 @@ BYTEA bytea variable-length byte array (null-byte safe) serial/auto-incrementing field?

PostgreSQL supports a SERIAL data type. It - auto-creates a sequence and index on the column. For example, + auto-creates a sequence. For example, this:

     CREATE TABLE person ( 
@@ -1118,7 +1117,6 @@ BYTEA           bytea           variable-length byte array (null-byte safe)
         id   INT4 NOT NULL DEFAULT nextval('person_id_seq'),
         name TEXT 
     );
-    CREATE UNIQUE INDEX person_id_key ON person ( id );
 
See the create_sequence manual page for more information diff --git a/doc/src/FAQ/FAQ_DEV.html b/doc/src/FAQ/FAQ_DEV.html index 64037ff5cda..538d4d1b08d 100644 --- a/doc/src/FAQ/FAQ_DEV.html +++ b/doc/src/FAQ/FAQ_DEV.html @@ -12,7 +12,7 @@

Developer's Frequently Asked Questions (FAQ) for PostgreSQL

-

Last updated: Wed Oct 29 21:40:18 EST 2003

+

Last updated: Sat Nov 29 23:56:43 EST 2003

Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -89,7 +89,7 @@ What development environment (OS, system, compilers, etc) is required to develop code? -

Developers Corner on the +

Developers Corner on the website has links to this information. The distribution tarball itself includes all the extra tools and documents that go beyond a good Unix-like development environment. In general, a modern unix -- cgit v1.2.3