Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4dc6619

Browse files
committed
Stamp for 7.1.2. Ready when you are...
1 parentc33b72e commit4dc6619

File tree

10 files changed

+93
-16
lines changed

10 files changed

+93
-16
lines changed

‎HISTORY

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
------------------------------------------------------------------------
2+
Release 7.1.2
3+
------------------------------------------------------------------------
4+
5+
6+
Release 7.1.2 (2001-05-11)
7+
8+
One fix from 7.1.1.
9+
10+
Migration to v7.1.2
11+
12+
A dump/restore is not required for those running 7.1.X.
13+
14+
Changes
15+
-------
16+
Fix PL/PgSQL SELECTs when returning no rows
17+
18+
19+
120
------------------------------------------------------------------------
221
Release 7.1.1
322
------------------------------------------------------------------------

‎README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PostgreSQL Data Base Management System (formerly known as Postgres, then
22
as Postgres95).
33

4-
This directory contains the development version of 7.1.1 of the
4+
This directory contains the development version of 7.1.2 of the
55
PostgreSQL database server. The server is not 100% ANSI SQL compliant,
66
but it gets closer with every release. After you unzip and untar the
77
distribution file, look at file INSTALL for the installation notes and

‎configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ AC_CONFIG_HEADER(src/include/config.h)
2828
AC_PREREQ(2.13)
2929
AC_CONFIG_AUX_DIR(config)
3030

31-
VERSION='7.1.1'
31+
VERSION='7.1.2'
3232
AC_SUBST(VERSION)
3333
AC_DEFINE_UNQUOTED(PG_VERSION, "$VERSION")
3434

‎doc/FAQ

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Frequently Asked Questions (FAQ) for PostgreSQL
33

4-
Last updated: ThuApr 26 20:55:41 EDT 2001
4+
Last updated: ThuMay 10 21:32:49 EDT 2001
55

66
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
77

@@ -74,7 +74,8 @@
7474
4.11) What is an R-tree index?
7575
4.12) What is the Genetic Query Optimizer?
7676
4.13) How do I perform regular expression searches and
77-
case-insensitive regular expression searches?
77+
case-insensitive regular expression searches? How do I use an index
78+
for case-insensitive searches?
7879
4.14) In a query, how do I detect if a field is NULL?
7980
4.15) What is the difference between the various character types?
8081
4.16.1) How do I create a serial/auto-incrementing field?
@@ -233,7 +234,7 @@
233234

234235
1.7) What is the latest release?
235236

236-
The latest release of PostgreSQL is version 7.1.
237+
The latest release of PostgreSQL is version 7.1.1.
237238

238239
We plan to have major releases every four months.
239240

@@ -751,12 +752,24 @@ Maximum number of indexes on a table? unlimited
751752
join queries through nonexhaustive search.
752753

753754
4.13) How do I perform regular expression searches and case-insensitive
754-
regular expression searches?
755+
regular expression searches? How do I use an index for case-insensitive
756+
searches?
755757

756758
The ~ operator does regular expression matching, and ~* does
757759
case-insensitive regular expression matching. The case-insensitive
758760
variant of LIKE is called ILIKE in PostgreSQL 7.1 and later.
759761

762+
Case-insensitive equality comparisons are normally expressed as:
763+
SELECT *
764+
FROM tab
765+
WHERE lower(col) = 'abc'
766+
767+
768+
This will not use an standard index. However, if you create a
769+
functional index, it will be used:
770+
CREATE INDEX tabindex on tab (lower(col));
771+
772+
760773
4.14) In a query, how do I detect if a field is NULL?
761774

762775
You test the column with IS NULLIS NOT NULL.

‎doc/bug.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ System Configuration
2727

2828
Operating System (example: Linux 2.0.26 ELF) :
2929

30-
PostgreSQL version (example: PostgreSQL-7.1.1): PostgreSQL-7.1.1
30+
PostgreSQL version (example: PostgreSQL-7.1.1): PostgreSQL-7.1.2
3131

3232
Compiler used (example: gcc 2.95.2):
3333

‎doc/src/sgml/release.sgml

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,55 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.90 2001/05/05 02:57:40 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.90.2.1 2001/05/11 01:34:42 momjian Exp $
33
-->
44

55
<appendix id="release">
66
<title>Release Notes</title>
77

8+
<sect1 id="release-7-1-2">
9+
<title>Release 7.1.2</title>
10+
11+
<note>
12+
<title>Release date</title>
13+
<simpara>2001-05-11</simpara>
14+
</note>
15+
16+
<!--
17+
<docinfo>
18+
<authorgroup>
19+
<author>
20+
<firstname>Bruce</firstname>
21+
<surname>Momjian</surname>
22+
</author>
23+
</authorgroup>
24+
</docinfo>
25+
-->
26+
27+
<para>
28+
This has one fix from 7.1.1.
29+
</para>
30+
31+
32+
<sect2>
33+
<title>Migration to version 7.1.2</title>
34+
35+
<para>
36+
A dump/restore is <emphasis>not</emphasis> required for those running
37+
7.1.X.
38+
</para>
39+
</sect2>
40+
41+
<sect2>
42+
<title>Changes</title>
43+
44+
<para>
45+
<programlisting>
46+
Fix PL/PgSQL SELECTs when returning no rows
47+
</programlisting>
48+
</para>
49+
</sect2>
50+
</sect1>
51+
52+
853
<sect1 id="release-7-1-1">
954
<title>Release 7.1.1</title>
1055

‎doc/src/sgml/version.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Update this file to propagate correct current version numbers to the
33
documentation. In text, use for example &version; to refer to them.
44
-->
55

6-
<!entity version "7.1.1">
6+
<!entity version "7.1.2">
77
<!entity majorversion "7.1">

‎register.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
(2001-05-05)
2+
(2001-05-11)
33
PostgreSQL has a Web site at http://www.postgresql.org/ which carries details
44
on the latest release, upcoming features, and other information to make your
55
work or play with PostgreSQL more productive.

‎src/include/config.h.win32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
* Parts of config.h that you get with autoconf on other systems
33
*/
4-
#define PG_VERSION "7.1.1"
5-
#define PG_VERSION_STR "7.1.1 (win32)"
4+
#define PG_VERSION "7.1.2"
5+
#define PG_VERSION_STR "7.1.2 (win32)"
66

77
#define SYSCONFDIR ""
88

‎src/interfaces/libpq/libpq.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winver.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 7,1,1,0
5-
PRODUCTVERSION 7,1,1,0
4+
FILEVERSION 7,1,2,0
5+
PRODUCTVERSION 7,1,2,0
66
FILEFLAGSMASK 0x3fL
77
FILEFLAGS 0
88
FILEOS VOS__WINDOWS32
@@ -15,13 +15,13 @@ BEGIN
1515
BEGIN
1616
VALUE "CompanyName", "\0"
1717
VALUE "FileDescription", "PostgreSQL Access Library\0"
18-
VALUE "FileVersion", "7, 1,0, 0\0"
18+
VALUE "FileVersion", "7, 1,2, 0\0"
1919
VALUE "InternalName", "libpq\0"
2020
VALUE "LegalCopyright", "Copyright (C) 2000\0"
2121
VALUE "LegalTrademarks", "\0"
2222
VALUE "OriginalFilename", "libpq.dll\0"
2323
VALUE "ProductName", "PostgreSQL\0"
24-
VALUE "ProductVersion", "7, 1,0, 0\0"
24+
VALUE "ProductVersion", "7, 1,2, 0\0"
2525
END
2626
END
2727
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp