Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
6cb6d054
Commit
6cb6d054
authored
Jun 12, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Brand 7.1 release. Also update jdbc version in release branch.
parent
332f0f5f
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
32 additions
and
14 deletions
+32
-14
README
README
+1
-1
doc/bug.template
doc/bug.template
+1
-1
doc/src/FAQ.html
doc/src/FAQ.html
+19
-1
register.txt
register.txt
+1
-1
src/include/catalog/catversion.h
src/include/catalog/catversion.h
+2
-2
src/include/version.h.in
src/include/version.h.in
+2
-2
src/interfaces/jdbc/postgresql/jdbc1/DatabaseMetaData.java
src/interfaces/jdbc/postgresql/jdbc1/DatabaseMetaData.java
+1
-1
src/interfaces/jdbc/postgresql/jdbc2/DatabaseMetaData.java
src/interfaces/jdbc/postgresql/jdbc2/DatabaseMetaData.java
+1
-1
src/interfaces/libpq/libpq.rc
src/interfaces/libpq/libpq.rc
+4
-4
No files found.
README
View file @
6cb6d054
...
...
@@ -2,7 +2,7 @@
PostgreSQL Data Base Management System (formerly known as Postgres, then
as Postgres95).
This directory contains the development version of 7.
0
of the
This directory contains the development version of 7.
1
of the
PostgreSQL database server. The server is not ANSI SQL compliant, but
it gets closer with every release. After you unzip and untar the
distribution file, look at file INSTALL for the installation notes and
...
...
doc/bug.template
View file @
6cb6d054
...
...
@@ -27,7 +27,7 @@ System Configuration
Operating System (example: Linux 2.0.26 ELF) :
PostgreSQL version (example: PostgreSQL-7.
0): PostgreSQL-7.0
.1
PostgreSQL version (example: PostgreSQL-7.
1): PostgreSQL-7
.1
Compiler used (example: gcc 2.8.0) :
...
...
doc/src/FAQ.html
View file @
6cb6d054
...
...
@@ -137,7 +137,9 @@ am running? <BR>
large obj descriptor.
</I>
Why?
<BR>
<A
HREF=
"#4.22"
>
4.22
</A>
) How do I create a column that will default to the
current time?
<BR>
<A
HREF=
"#4.23"
>
4.23
</A>
) Why are my subqueries using
<CODE>
IN
</CODE>
so slow?
<BR>
<A
HREF=
"#4.23"
>
4.23
</A>
) Why are my subqueries using
<CODE>
IN
</CODE>
so
slow?
<BR>
<A
HREF=
"#4.24"
>
4.24
</A>
) How do I do an
<i>
outer
</i>
join?
<BR>
<H2><CENTER>
Extending PostgreSQL
</CENTER></H2>
...
...
@@ -1206,6 +1208,22 @@ to:
</PRE></CODE>
We hope to fix this limitation in a future release.
<H4><A
NAME=
"4.24"
>
4.24
</A>
) How do I do an
<i>
outer
</i>
join?
<BR></H4><P>
PostgreSQL does not support outer joins in the current release. They can
be simulated using
<small>
UNION
</small>
and
<small>
NOT IN
</small>
. For
example, when joining
<i>
tab1
</i>
and
<i>
tab2,
</i>
the following query
does an
<i>
outer
</i>
join of the two tables:
<PRE>
SELECT tab1.col1, tab2.col2
FROM tab1, tab2
WHERE tab1.col1 = tab2.col1
UNION ALL
SELECT tab1.col1, NULL
FROM tab1
WHERE tab1.col1 NOT IN (SELECT tab2.col1 FROM tab2)
ORDER BY tab1.col1
</PRE>
<HR>
<H2><CENTER>
Extending PostgreSQL
</CENTER></H2><P>
...
...
register.txt
View file @
6cb6d054
(2000-0
6
-01)
(2000-0
9
-01)
PostgreSQL has a Web site at http://www.postgresql.org/ which carries details
on the latest release, upcoming features, and other information to make your
work or play with PostgreSQL more productive.
...
...
src/include/catalog/catversion.h
View file @
6cb6d054
...
...
@@ -37,7 +37,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: catversion.h,v 1.
29 2000/06/12 03:40:51
momjian Exp $
* $Id: catversion.h,v 1.
30 2000/06/12 22:36:12
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -53,6 +53,6 @@
*/
/* yyyymmddN */
#define CATALOG_VERSION_NO 200006
08
1
#define CATALOG_VERSION_NO 200006
12
1
#endif
src/include/version.h.in
View file @
6cb6d054
...
...
@@ -4,7 +4,7 @@
* this file contains the interface to version.c.
* Also some parameters.
*
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.
8 1999/11/01 02:33:32
momjian Exp $
* $Header: /cvsroot/pgsql/src/include/Attic/version.h.in,v 1.
9 2000/06/12 22:36:10
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -15,7 +15,7 @@ void ValidatePgVersion(const char *path, char **reason_p);
void SetPgVersion(const char *path, char **reason_p);
#define PG_RELEASE "7"
#define PG_VERSION "
0
"
#define PG_VERSION "
1
"
#define PG_SUBVERSION "0"
#define PG_VERFILE "PG_VERSION"
...
...
src/interfaces/jdbc/postgresql/jdbc1/DatabaseMetaData.java
View file @
6cb6d054
...
...
@@ -179,7 +179,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
*/
public
String
getDatabaseProductVersion
()
throws
SQLException
{
return
(
"
6.5.2
"
);
return
(
"
7.1
"
);
}
/**
...
...
src/interfaces/jdbc/postgresql/jdbc2/DatabaseMetaData.java
View file @
6cb6d054
...
...
@@ -179,7 +179,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
*/
public
String
getDatabaseProductVersion
()
throws
SQLException
{
return
(
"
6.5.2
"
);
return
(
"
7.1
"
);
}
/**
...
...
src/interfaces/libpq/libpq.rc
View file @
6cb6d054
#include <winver.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 7,
0
,0,0
PRODUCTVERSION 7,
0
,0,0
FILEVERSION 7,
1
,0,0
PRODUCTVERSION 7,
1
,0,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS__WINDOWS32
...
...
@@ -15,13 +15,13 @@ BEGIN
BEGIN
VALUE "CompanyName", "\0"
VALUE "FileDescription", "PostgreSQL Access Library\0"
VALUE "FileVersion", "7,
0
, 0, 0\0"
VALUE "FileVersion", "7,
1
, 0, 0\0"
VALUE "InternalName", "libpq\0"
VALUE "LegalCopyright", "Copyright (C) 2000\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "libpq.dll\0"
VALUE "ProductName", "PostgreSQL\0"
VALUE "ProductVersion", "7,
0
, 0, 0\0"
VALUE "ProductVersion", "7,
1
, 0, 0\0"
END
END
BLOCK "VarFileInfo"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment