mirror of
https://github.com/postgres/postgres.git
synced 2025-08-08 06:02:22 +03:00
Stamp for 7.1.2. Ready when you are...
This commit is contained in:
21
doc/FAQ
21
doc/FAQ
@@ -1,7 +1,7 @@
|
||||
|
||||
Frequently Asked Questions (FAQ) for PostgreSQL
|
||||
|
||||
Last updated: Thu Apr 26 20:55:41 EDT 2001
|
||||
Last updated: Thu May 10 21:32:49 EDT 2001
|
||||
|
||||
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
|
||||
|
||||
@@ -74,7 +74,8 @@
|
||||
4.11) What is an R-tree index?
|
||||
4.12) What is the Genetic Query Optimizer?
|
||||
4.13) How do I perform regular expression searches and
|
||||
case-insensitive regular expression searches?
|
||||
case-insensitive regular expression searches? How do I use an index
|
||||
for case-insensitive searches?
|
||||
4.14) In a query, how do I detect if a field is NULL?
|
||||
4.15) What is the difference between the various character types?
|
||||
4.16.1) How do I create a serial/auto-incrementing field?
|
||||
@@ -233,7 +234,7 @@
|
||||
|
||||
1.7) What is the latest release?
|
||||
|
||||
The latest release of PostgreSQL is version 7.1.
|
||||
The latest release of PostgreSQL is version 7.1.1.
|
||||
|
||||
We plan to have major releases every four months.
|
||||
|
||||
@@ -751,12 +752,24 @@ Maximum number of indexes on a table? unlimited
|
||||
join queries through nonexhaustive search.
|
||||
|
||||
4.13) How do I perform regular expression searches and case-insensitive
|
||||
regular expression searches?
|
||||
regular expression searches? How do I use an index for case-insensitive
|
||||
searches?
|
||||
|
||||
The ~ operator does regular expression matching, and ~* does
|
||||
case-insensitive regular expression matching. The case-insensitive
|
||||
variant of LIKE is called ILIKE in PostgreSQL 7.1 and later.
|
||||
|
||||
Case-insensitive equality comparisons are normally expressed as:
|
||||
SELECT *
|
||||
FROM tab
|
||||
WHERE lower(col) = 'abc'
|
||||
|
||||
|
||||
This will not use an standard index. However, if you create a
|
||||
functional index, it will be used:
|
||||
CREATE INDEX tabindex on tab (lower(col));
|
||||
|
||||
|
||||
4.14) In a query, how do I detect if a field is NULL?
|
||||
|
||||
You test the column with IS NULLIS NOT NULL.
|
||||
|
@@ -27,7 +27,7 @@ System Configuration
|
||||
|
||||
Operating System (example: Linux 2.0.26 ELF) :
|
||||
|
||||
PostgreSQL version (example: PostgreSQL-7.1.1): PostgreSQL-7.1.1
|
||||
PostgreSQL version (example: PostgreSQL-7.1.1): PostgreSQL-7.1.2
|
||||
|
||||
Compiler used (example: gcc 2.95.2) :
|
||||
|
||||
|
@@ -1,10 +1,55 @@
|
||||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.90 2001/05/05 02:57:40 momjian Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.90.2.1 2001/05/11 01:34:42 momjian Exp $
|
||||
-->
|
||||
|
||||
<appendix id="release">
|
||||
<title>Release Notes</title>
|
||||
|
||||
<sect1 id="release-7-1-2">
|
||||
<title>Release 7.1.2</title>
|
||||
|
||||
<note>
|
||||
<title>Release date</title>
|
||||
<simpara>2001-05-11</simpara>
|
||||
</note>
|
||||
|
||||
<!--
|
||||
<docinfo>
|
||||
<authorgroup>
|
||||
<author>
|
||||
<firstname>Bruce</firstname>
|
||||
<surname>Momjian</surname>
|
||||
</author>
|
||||
</authorgroup>
|
||||
</docinfo>
|
||||
-->
|
||||
|
||||
<para>
|
||||
This has one fix from 7.1.1.
|
||||
</para>
|
||||
|
||||
|
||||
<sect2>
|
||||
<title>Migration to version 7.1.2</title>
|
||||
|
||||
<para>
|
||||
A dump/restore is <emphasis>not</emphasis> required for those running
|
||||
7.1.X.
|
||||
</para>
|
||||
</sect2>
|
||||
|
||||
<sect2>
|
||||
<title>Changes</title>
|
||||
|
||||
<para>
|
||||
<programlisting>
|
||||
Fix PL/PgSQL SELECTs when returning no rows
|
||||
</programlisting>
|
||||
</para>
|
||||
</sect2>
|
||||
</sect1>
|
||||
|
||||
|
||||
<sect1 id="release-7-1-1">
|
||||
<title>Release 7.1.1</title>
|
||||
|
||||
|
@@ -3,5 +3,5 @@ Update this file to propagate correct current version numbers to the
|
||||
documentation. In text, use for example &version; to refer to them.
|
||||
-->
|
||||
|
||||
<!entity version "7.1.1">
|
||||
<!entity version "7.1.2">
|
||||
<!entity majorversion "7.1">
|
||||
|
Reference in New Issue
Block a user