From 876ef5d5c9bc753dd8c097bf8ad13616af1300f4 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 11 Dec 2006 22:46:02 +0000 Subject: [PATCH] Remove blank lines in HTML FAQ. --- doc/FAQ | 2 +- doc/src/FAQ/FAQ.html | 30 +++++++++++++++--------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/doc/FAQ b/doc/FAQ index 2939d75441..f539aa3d03 100644 --- a/doc/FAQ +++ b/doc/FAQ @@ -1,7 +1,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL - Last updated: Mon Dec 11 17:44:33 EST 2006 + Last updated: Mon Dec 11 17:45:54 EST 2006 Current maintainer: Bruce Momjian (bruce@momjian.us) diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index 2a259db3d0..b04db6b474 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: Mon Dec 11 17:44:33 EST 2006

+

Last updated: Mon Dec 11 17:45:54 EST 2006

Current maintainer: Bruce Momjian (bruce@momjian.us) @@ -42,7 +42,7 @@ development team?
1.13) How does PostgreSQL compare to other DBMSs?
- +

User Client Questions

2.1) What interfaces are available for @@ -51,7 +51,7 @@ PostgreSQL with Web pages?
2.3) Does PostgreSQL have a graphical user interface?
- +

Administrative Questions

3.1) How do I install PostgreSQL somewhere other @@ -281,7 +281,7 @@ - +

1.9) How do I find out about known bugs or missing features?

@@ -307,7 +307,7 @@
  • The new feature is added to the TODO list
  • - +

    PostgreSQL does not use a bug tracking system because we find it more efficient to respond directly to email and keep the TODO @@ -318,7 +318,7 @@ CVS log messages. Even the release notes do not list every change made to the software.

    - +

    1.10) What documentation is available?

    PostgreSQL includes extensive documentation, including a large @@ -370,7 +370,7 @@ "http://mysite.verizon.net/Graeme_Birchall/id1.html">http://mysite.verizon.net/Graeme_Birchall/id1.html - +

    1.12) How do I submit a patch or join the development team?

    @@ -503,7 +503,7 @@

    There are three major areas for potential performance improvement:

    - +
    Query Changes
    @@ -583,7 +583,7 @@ PostgreSQL minor releases are designed to fix only common bugs with the least risk. The community considers not upgrading more risky that upgrading.

    - +

    Major releases (e.g. from 7.3 to 7.4) often change the internal format of system tables and data files. These changes are often complex, so we don't maintain backward compatibility for data files. A dump/reload @@ -638,7 +638,7 @@

    There are also system tables beginning with pg_ that describe these too.

    - +

    Use psql -l will list all databases.

    Also try the file pgsql/src/tutorial/syscat.source. It @@ -660,7 +660,7 @@

    You might then want to do VACUUM FULL tab to reclaim the disk space used by the expired rows.

    - +

    4.4) What is the maximum size for a row, a table, and a database?

    @@ -735,7 +735,7 @@ table?unlimited

    NULLs are stored as bitmaps, so they use very little space.

    - +

    4.6) Why are my queries slow? Why don't they use my indexes?

    @@ -760,7 +760,7 @@ table?unlimited However, LIMIT combined with ORDER BY often will use an index because only a small portion of the table is returned.

    - +

    If you believe the optimizer is incorrect in choosing a sequential scan, use SET enable_seqscan TO 'off' and run query again to see if an index scan is indeed faster.

    @@ -847,7 +847,7 @@ table?unlimited SELECT COALESCE(col1, '') || COALESCE(col2, '') FROM tab - +

    To sort by the NULL status, use the IS NULL and IS NOT NULL modifiers in your ORDER BY clause. Things that are true will sort higher than things that are false, @@ -948,7 +948,7 @@ length execute("INSERT INTO person (name) VALUES ('Blaise Pascal')"); new_id = execute("SELECT currval('person_id_seq')"); - +

    4.11.3) Doesn't currval() lead to a race condition with other users?

    -- 2.40.0