mirror of
https://github.com/postgres/postgres.git
synced 2025-08-08 06:02:22 +03:00
Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.
This commit is contained in:
2
doc/FAQ
2
doc/FAQ
@@ -141,7 +141,7 @@
|
||||
|
||||
PostgreSQL Data Base Management System
|
||||
|
||||
Portions copyright (c) 1996-2000, PostgreSQL, Inc Portions Copyright
|
||||
Portions copyright (c) 1996-2001, PostgreSQL Global Development Group Portions Copyright
|
||||
(c) 1994-6 Regents of the University of California
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and its
|
||||
|
@@ -2,7 +2,7 @@ From owner-pgsql-hackers@hub.org Sun Jan 23 13:31:03 2000
|
||||
Received: from renoir.op.net (root@renoir.op.net [207.29.195.4])
|
||||
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id NAA28482
|
||||
for <pgman@candle.pha.pa.us>; Sun, 23 Jan 2000 13:31:01 -0500 (EST)
|
||||
Received: from hub.org (hub.org [216.126.84.1]) by renoir.op.net (o1/$Revision: 1.1 $) with ESMTP id NAA08409 for <pgman@candle.pha.pa.us>; Sun, 23 Jan 2000 13:04:34 -0500 (EST)
|
||||
Received: from hub.org (hub.org [216.126.84.1]) by renoir.op.net (o1/$Revision: 1.2 $) with ESMTP id NAA08409 for <pgman@candle.pha.pa.us>; Sun, 23 Jan 2000 13:04:34 -0500 (EST)
|
||||
Received: from localhost (majordom@localhost)
|
||||
by hub.org (8.9.3/8.9.3) with SMTP id MAA65651;
|
||||
Sun, 23 Jan 2000 12:57:33 -0500 (EST)
|
||||
@@ -187,3 +187,67 @@ as part of Postgres unless these issues get addressed.
|
||||
|
||||
************
|
||||
|
||||
From pgsql-hackers-owner+M3768@postgresql.org Wed Jan 24 14:20:02 2001
|
||||
Received: from mail.postgresql.org (webmail.postgresql.org [216.126.85.28])
|
||||
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id OAA25380
|
||||
for <pgman@candle.pha.pa.us>; Wed, 24 Jan 2001 14:20:02 -0500 (EST)
|
||||
Received: from mail.postgresql.org (webmail.postgresql.org [216.126.85.28])
|
||||
by mail.postgresql.org (8.11.1/8.11.1) with SMTP id f0OJHTq57982;
|
||||
Wed, 24 Jan 2001 14:17:29 -0500 (EST)
|
||||
(envelope-from pgsql-hackers-owner+M3768@postgresql.org)
|
||||
Received: from fw.wintelcom.net (ns1.wintelcom.net [209.1.153.20])
|
||||
by mail.postgresql.org (8.11.1/8.11.1) with ESMTP id f0OIXnq49509
|
||||
for <pgsql-hackers@postgresql.org>; Wed, 24 Jan 2001 13:33:49 -0500 (EST)
|
||||
(envelope-from bright@fw.wintelcom.net)
|
||||
Received: (from bright@localhost)
|
||||
by fw.wintelcom.net (8.10.0/8.10.0) id f0OIXgi14650;
|
||||
Wed, 24 Jan 2001 10:33:42 -0800 (PST)
|
||||
Date: Wed, 24 Jan 2001 10:33:42 -0800
|
||||
From: Alfred Perlstein <bright@wintelcom.net>
|
||||
To: Tom Lane <tgl@sss.pgh.pa.us>
|
||||
Cc: Bruce Momjian <pgman@candle.pha.pa.us>, pgsql-hackers@postgresql.org
|
||||
Subject: Re: [HACKERS] Libpq async issues
|
||||
Message-ID: <20010124103342.B26076@fw.wintelcom.net>
|
||||
References: <6208.948650136@sss.pgh.pa.us> <200101241339.IAA11747@candle.pha.pa.us> <20010124084720.T26076@fw.wintelcom.net> <13021.980355551@sss.pgh.pa.us>
|
||||
Mime-Version: 1.0
|
||||
Content-Type: text/plain; charset=us-ascii
|
||||
Content-Disposition: inline
|
||||
User-Agent: Mutt/1.2.5i
|
||||
In-Reply-To: <13021.980355551@sss.pgh.pa.us>; from tgl@sss.pgh.pa.us on Wed, Jan 24, 2001 at 11:59:11AM -0500
|
||||
Precedence: bulk
|
||||
Sender: pgsql-hackers-owner@postgresql.org
|
||||
Status: OR
|
||||
|
||||
* Tom Lane <tgl@sss.pgh.pa.us> [010124 10:27] wrote:
|
||||
> Alfred Perlstein <bright@wintelcom.net> writes:
|
||||
> > * Bruce Momjian <pgman@candle.pha.pa.us> [010124 07:58] wrote:
|
||||
> >> I have added this email to TODO.detail and a mention in the TODO list.
|
||||
>
|
||||
> > The bug mentioned here is long gone,
|
||||
>
|
||||
> Au contraire, the misdesign is still there. The nonblock-mode code
|
||||
> will *never* be reliable under stress until something is done about
|
||||
> that, and that means fairly extensive code and API changes.
|
||||
|
||||
The "bug" is the one mentioned in the first paragraph of the email
|
||||
where I broke _blocking_ connections for a short period.
|
||||
|
||||
I still need to fix async connections for myself (and of course
|
||||
contribute it back), but I just haven't had the time. If anyone
|
||||
else wants it fixed earlier they can wait for me to do it, do it
|
||||
themself, contract me to do it or hope someone else comes along
|
||||
to fix it.
|
||||
|
||||
I'm thinking that I'll do what you said and have seperate paths
|
||||
for writing/reading to the socket and API's to do so that give
|
||||
the user the option of a boundry, basically:
|
||||
|
||||
buffer this, but don't allow me to write until it's flushed
|
||||
|
||||
which would allow for larger than 8k COPY rows to go into the
|
||||
backend.
|
||||
|
||||
--
|
||||
-Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org]
|
||||
"I have the heart of a child; I keep it in a jar on my desk."
|
||||
|
||||
|
@@ -516,3 +516,131 @@ http://yi.org/peter-e/ Sweden
|
||||
|
||||
************
|
||||
|
||||
From pgsql-general-owner+M2136@hub.org Sat Jun 3 23:31:02 2000
|
||||
Received: from renoir.op.net (root@renoir.op.net [207.29.195.4])
|
||||
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id WAA28683
|
||||
for <pgman@candle.pha.pa.us>; Sat, 3 Jun 2000 22:31:01 -0400 (EDT)
|
||||
Received: from news.tht.net (news.hub.org [216.126.91.242]) by renoir.op.net (o1/$Revision: 1.14 $) with ESMTP id WAA20977 for <pgman@candle.pha.pa.us>; Sat, 3 Jun 2000 22:05:07 -0400 (EDT)
|
||||
Received: from hub.org (majordom@hub.org [216.126.84.1])
|
||||
by news.tht.net (8.9.3/8.9.3) with ESMTP id VAD35811;
|
||||
Sat, 3 Jun 2000 21:54:36 -0400 (EDT)
|
||||
(envelope-from pgsql-general-owner+M2136@hub.org)
|
||||
Received: from merganser.its.uu.se (merganser.its.uu.se [130.238.6.236])
|
||||
by hub.org (8.9.3/8.9.3) with ESMTP id VAA12118
|
||||
for <pgsql-general@postgresql.org>; Sat, 3 Jun 2000 21:41:27 -0400 (EDT)
|
||||
(envelope-from peter@localhost.its.uu.se)
|
||||
Received: from regulus.student.UU.SE ([130.238.5.2]:61160 "EHLO
|
||||
regulus.its.uu.se") by merganser.its.uu.se with ESMTP
|
||||
id <S168006AbQFDBlC>; Sun, 4 Jun 2000 03:41:02 +0200
|
||||
Received: from peter (helo=localhost)
|
||||
by regulus.its.uu.se with local-esmtp (Exim 3.02 #2)
|
||||
id 12yPV7-0002Tp-00; Sun, 04 Jun 2000 03:46:53 +0200
|
||||
Date: Sun, 4 Jun 2000 03:46:53 +0200 (CEST)
|
||||
From: Peter Eisentraut <peter_e@gmx.net>
|
||||
To: ldm@apartia.com
|
||||
cc: pgsql-general@postgresql.org
|
||||
Subject: Re: [GENERAL] child table doesn't inherit PRIMARY KEY?
|
||||
In-Reply-To: <20000603172256.A3435@styx>
|
||||
Message-ID: <Pine.LNX.4.21.0006040341030.348-100000@localhost.localdomain>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: TEXT/PLAIN; charset=ISO-8859-1
|
||||
Content-Transfer-Encoding: 8BIT
|
||||
X-Mailing-List: pgsql-general@postgresql.org
|
||||
Precedence: bulk
|
||||
Sender: pgsql-general-owner@hub.org
|
||||
Status: ORr
|
||||
|
||||
Louis-David Mitterrand writes:
|
||||
|
||||
> When creating a child (through CREATE TABLE ... INHERIT (parent)) it
|
||||
> seems the child gets all of the parent's contraints _except_ its PRIMARY
|
||||
> KEY. Is this normal?
|
||||
|
||||
It's kind of a bug.
|
||||
|
||||
|
||||
--
|
||||
Peter Eisentraut Sernanders v<>g 10:115
|
||||
peter_e@gmx.net 75262 Uppsala
|
||||
http://yi.org/peter-e/ Sweden
|
||||
|
||||
|
||||
From sszabo@megazone23.bigpanda.com Fri Jan 19 12:37:34 2001
|
||||
Received: from megazone23.bigpanda.com (rfx-64-6-210-138.users.reflexcom.com [64.6.210.138])
|
||||
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id MAA28247
|
||||
for <pgman@candle.pha.pa.us>; Fri, 19 Jan 2001 12:37:33 -0500 (EST)
|
||||
Received: from localhost (sszabo@localhost)
|
||||
by megazone23.bigpanda.com (8.11.1/8.11.1) with ESMTP id f0JHb2H05566;
|
||||
Fri, 19 Jan 2001 09:37:03 -0800 (PST)
|
||||
Date: Fri, 19 Jan 2001 09:37:02 -0800 (PST)
|
||||
From: Stephan Szabo <sszabo@megazone23.bigpanda.com>
|
||||
To: Bruce Momjian <pgman@candle.pha.pa.us>
|
||||
cc: pgsql-general@postgresql.org
|
||||
Subject: Re: [GENERAL] child table doesn't inherit PRIMARY KEY?
|
||||
In-Reply-To: <200101190457.XAA13895@candle.pha.pa.us>
|
||||
Message-ID: <Pine.BSF.4.21.0101190932480.5520-100000@megazone23.bigpanda.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: TEXT/PLAIN; charset=US-ASCII
|
||||
Status: OR
|
||||
|
||||
|
||||
Probably, since I see it in near recent sources (and it affects
|
||||
UNIQUE as well. As I remember it, the last discussion on this couldn't
|
||||
determine what the correct behavior for unique/primary key constraints
|
||||
was in the inheritance case (is it a single unique hierarchy through
|
||||
all the tables [would be needed for fk to inheritance trees] or
|
||||
separate unique constraints for each table [which would be similar
|
||||
to how many people seem to currently use postgres inheritance as a
|
||||
shortcut]).
|
||||
|
||||
On Thu, 18 Jan 2001, Bruce Momjian wrote:
|
||||
|
||||
> Does this bug still exist?
|
||||
>
|
||||
> [ Charset ISO-8859-1 unsupported, converting... ]
|
||||
> > Louis-David Mitterrand writes:
|
||||
> >
|
||||
> > > When creating a child (through CREATE TABLE ... INHERIT (parent)) it
|
||||
> > > seems the child gets all of the parent's contraints _except_ its PRIMARY
|
||||
> > > KEY. Is this normal?
|
||||
|
||||
|
||||
From sszabo@megazone23.bigpanda.com Wed Jan 24 14:26:12 2001
|
||||
Received: from megazone23.bigpanda.com (rfx-64-6-210-138.users.reflexcom.com [64.6.210.138])
|
||||
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id OAA26091
|
||||
for <pgman@candle.pha.pa.us>; Wed, 24 Jan 2001 14:26:10 -0500 (EST)
|
||||
Received: from localhost (sszabo@localhost)
|
||||
by megazone23.bigpanda.com (8.11.1/8.11.1) with ESMTP id f0OJPZ858086;
|
||||
Wed, 24 Jan 2001 11:25:35 -0800 (PST)
|
||||
Date: Wed, 24 Jan 2001 11:25:35 -0800 (PST)
|
||||
From: Stephan Szabo <sszabo@megazone23.bigpanda.com>
|
||||
To: Bruce Momjian <pgman@candle.pha.pa.us>
|
||||
cc: PostgreSQL-development <pgsql-hackers@postgreSQL.org>
|
||||
Subject: Re: [GENERAL] child table doesn't inherit PRIMARY KEY?
|
||||
In-Reply-To: <200101241344.IAA12094@candle.pha.pa.us>
|
||||
Message-ID: <Pine.BSF.4.21.0101241120310.57849-100000@megazone23.bigpanda.com>
|
||||
MIME-Version: 1.0
|
||||
Content-Type: TEXT/PLAIN; charset=US-ASCII
|
||||
Status: ORr
|
||||
|
||||
On Wed, 24 Jan 2001, Bruce Momjian wrote:
|
||||
|
||||
>
|
||||
> OK, what do people want to do with this item? Add to TODO list?
|
||||
>
|
||||
> Seems making a separat unique constraint would be easy to do and be of
|
||||
> value to most users.
|
||||
|
||||
The problem is that doing that will pretty much guarantee that we won't
|
||||
be doing foreign keys to inheritance trees without changing that behavior
|
||||
and we've seen people asking about adding that too. I think that this
|
||||
falls into the general category of "Make inheritance make sense" (Now
|
||||
there's a todo item :) ) Seriously, I think the work on how inheritance
|
||||
is going to work will decide this, maybe we end up with a real inheritance
|
||||
tree system and something that works like the current stuff in which case
|
||||
I'd say it's probably one unique for the former and one per for the
|
||||
latter.
|
||||
|
||||
|
||||
|
||||
|
||||
|
@@ -198,7 +198,7 @@
|
||||
|
||||
<P>PostgreSQL Data Base Management System</P>
|
||||
|
||||
<P>Portions copyright (c) 1996-2000, PostgreSQL, Inc Portions
|
||||
<P>Portions copyright (c) 1996-2001, PostgreSQL Global Development Group Portions
|
||||
Copyright (c) 1994-6 Regents of the University of California</P>
|
||||
|
||||
<P>Permission to use, copy, modify, and distribute this software
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.29 2001/01/13 23:58:55 petere Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.30 2001/01/24 19:42:46 momjian Exp $
|
||||
-->
|
||||
|
||||
<book id="admin">
|
||||
@@ -20,8 +20,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/admin.sgml,v 1.29 2001/01/13 23:58:55
|
||||
|
||||
<legalnotice>
|
||||
<para>
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2000
|
||||
by PostgreSQL Inc.
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2001
|
||||
by PostgreSQL Global Development Group
|
||||
</para>
|
||||
</legalnotice>
|
||||
|
||||
|
@@ -1,13 +1,13 @@
|
||||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/legal.sgml,v 1.8 2000/04/07 13:30:58 thomas Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/legal.sgml,v 1.9 2001/01/24 19:42:46 momjian Exp $
|
||||
-->
|
||||
|
||||
<sect1 id="copyright">
|
||||
<title>Copyrights and Trademarks</title>
|
||||
|
||||
<para>
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2000
|
||||
by PostgreSQL Inc.
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2001
|
||||
by PostgreSQL Global Development Group
|
||||
and is distributed under the terms of the Berkeley license.
|
||||
</para>
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.31 2001/01/13 23:58:55 petere Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/programmer.sgml,v 1.32 2001/01/24 19:42:46 momjian Exp $
|
||||
|
||||
PostgreSQL Programmer's Guide.
|
||||
-->
|
||||
@@ -20,8 +20,8 @@ PostgreSQL Programmer's Guide.
|
||||
|
||||
<legalnotice>
|
||||
<para>
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2000
|
||||
by PostgreSQL Inc.
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2001
|
||||
by PostgreSQL Global Development Group
|
||||
</para>
|
||||
</legalnotice>
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<!-- reference.sgml
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/reference.sgml,v 1.12 2001/01/13 03:11:12 petere Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/reference.sgml,v 1.13 2001/01/24 19:42:46 momjian Exp $
|
||||
|
||||
PostgreSQL Reference Manual
|
||||
-->
|
||||
@@ -13,7 +13,7 @@ PostgreSQL Reference Manual
|
||||
<legalnotice>
|
||||
<para>
|
||||
<productname>PostgreSQL</productname> is © 1998-2000
|
||||
by PostgreSQL Inc.
|
||||
by PostgreSQL Global Development Group
|
||||
</para>
|
||||
</legalnotice>
|
||||
</bookinfo>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/tutorial.sgml,v 1.12 2001/01/13 23:58:55 petere Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/tutorial.sgml,v 1.13 2001/01/24 19:42:46 momjian Exp $
|
||||
-->
|
||||
|
||||
<book id="tutorial">
|
||||
@@ -18,8 +18,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/tutorial.sgml,v 1.12 2001/01/13 23:58
|
||||
|
||||
<legalnotice>
|
||||
<para>
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2000
|
||||
by PostgreSQL Inc.
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2001
|
||||
by PostgreSQL Global Development Group
|
||||
</para>
|
||||
</legalnotice>
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/user.sgml,v 1.25 2001/01/22 23:34:33 petere Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/user.sgml,v 1.26 2001/01/24 19:42:46 momjian Exp $
|
||||
-->
|
||||
|
||||
<book id="user">
|
||||
@@ -20,8 +20,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/user.sgml,v 1.25 2001/01/22 23:34:33
|
||||
|
||||
<legalnotice>
|
||||
<para>
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2000
|
||||
by PostgreSQL Inc.
|
||||
<productname>PostgreSQL</productname> is Copyright © 1996-2001
|
||||
by PostgreSQL Global Development Group
|
||||
</para>
|
||||
</legalnotice>
|
||||
|
||||
|
Reference in New Issue
Block a user