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

Commit6cb6d05

Browse files
committed
Brand 7.1 release. Also update jdbc version in release branch.
1 parent332f0f5 commit6cb6d05

File tree

9 files changed

+32
-14
lines changed

9 files changed

+32
-14
lines changed

‎README

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

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

‎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.0): PostgreSQL-7.0.1
30+
PostgreSQL version (example: PostgreSQL-7.1): PostgreSQL-7.1
3131

3232
Compiler used (example: gcc 2.8.0):
3333

‎doc/src/FAQ.html

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ <H2><CENTER>Operational Questions</CENTER></H2>
137137
large obj descriptor.</I> Why?<BR>
138138
<AHREF="#4.22">4.22</A>) How do I create a column that will default to the
139139
current time?<BR>
140-
<AHREF="#4.23">4.23</A>) Why are my subqueries using<CODE>IN</CODE> so slow?<BR>
140+
<AHREF="#4.23">4.23</A>) Why are my subqueries using<CODE>IN</CODE> so
141+
slow?<BR>
142+
<AHREF="#4.24">4.24</A>) How do I do an<i>outer</i> join?<BR>
141143

142144
<H2><CENTER>Extending PostgreSQL</CENTER></H2>
143145

@@ -1206,6 +1208,22 @@ <H4><A NAME="4.23">4.23</A>) Why are my subqueries using <CODE>IN</CODE> so
12061208
</PRE></CODE>
12071209
We hope to fix this limitation in a future release.
12081210

1211+
<H4><ANAME="4.24">4.24</A>) How do I do an<i>outer</i> join?<BR></H4><P>
1212+
PostgreSQL does not support outer joins in the current release. They can
1213+
be simulated using<small>UNION</small> and<small>NOT IN</small>. For
1214+
example, when joining<i>tab1</i> and<i>tab2,</i> the following query
1215+
does an<i>outer</i> join of the two tables:
1216+
<PRE>
1217+
SELECT tab1.col1, tab2.col2
1218+
FROM tab1, tab2
1219+
WHERE tab1.col1 = tab2.col1
1220+
UNION ALL
1221+
SELECT tab1.col1, NULL
1222+
FROM tab1
1223+
WHERE tab1.col1 NOT IN (SELECT tab2.col1 FROM tab2)
1224+
ORDER BY tab1.col1
1225+
</PRE>
1226+
12091227
<HR>
12101228

12111229
<H2><CENTER>Extending PostgreSQL</CENTER></H2><P>

‎register.txt

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

2-
(2000-06-01)
2+
(2000-09-01)
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/catalog/catversion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
3838
* Portions Copyright (c) 1994, Regents of the University of California
3939
*
40-
* $Id: catversion.h,v 1.29 2000/06/1203:40:51 momjian Exp $
40+
* $Id: catversion.h,v 1.30 2000/06/1222:36:12 momjian Exp $
4141
*
4242
*-------------------------------------------------------------------------
4343
*/
@@ -53,6 +53,6 @@
5353
*/
5454

5555
/*yyyymmddN */
56-
#defineCATALOG_VERSION_NO200006081
56+
#defineCATALOG_VERSION_NO200006121
5757

5858
#endif

‎src/include/version.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* this file contains the interface to version.c.
55
* Also some parameters.
66
*
7-
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.8 1999/11/01 02:33:32 momjian Exp $
7+
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.9 2000/06/12 22:36:10 momjian Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -15,7 +15,7 @@ void ValidatePgVersion(const char *path, char **reason_p);
1515
voidSetPgVersion(constchar*path,char**reason_p);
1616

1717
#definePG_RELEASE"7"
18-
#definePG_VERSION"0"
18+
#definePG_VERSION"1"
1919
#definePG_SUBVERSION"0"
2020

2121
#definePG_VERFILE"PG_VERSION"

‎src/interfaces/jdbc/postgresql/jdbc1/DatabaseMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public String getDatabaseProductName() throws SQLException
179179
*/
180180
publicStringgetDatabaseProductVersion()throwsSQLException
181181
{
182-
return ("6.5.2");
182+
return ("7.1");
183183
}
184184

185185
/**

‎src/interfaces/jdbc/postgresql/jdbc2/DatabaseMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public String getDatabaseProductName() throws SQLException
179179
*/
180180
publicStringgetDatabaseProductVersion()throwsSQLException
181181
{
182-
return ("6.5.2");
182+
return ("7.1");
183183
}
184184

185185
/**

‎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,0,0,0
5-
PRODUCTVERSION 7,0,0,0
4+
FILEVERSION 7,1,0,0
5+
PRODUCTVERSION 7,1,0,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,0, 0, 0\0"
18+
VALUE "FileVersion", "7,1, 0, 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,0, 0, 0\0"
24+
VALUE "ProductVersion", "7,1, 0, 0\0"
2525
END
2626
END
2727
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp