Skip to content

Commit 99f289d

Browse files
committed
Update TODO list.
1 parent 196cbe4 commit 99f289d

File tree

22 files changed

+945
-66
lines changed

22 files changed

+945
-66
lines changed

doc/TODO

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TODO list for PostgreSQL
22
========================
3-
Last updated: Sat Sep 18 16:37:37 EDT 1999
3+
Last updated: Tue Sep 21 15:54:14 EDT 1999
44

55
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
66

@@ -39,6 +39,8 @@ PARSER
3939
INSERT INTO inherit_table (unique_index_col) VALUES (dup) should fail
4040
* CREATE TABLE x AS SELECT 1 UNION SELECT 2 fails
4141
* CREATE TABLE test(col char(2) DEFAULT user) fails in length restriction
42+
* mismatched types in CREATE TABLE ... DEFAULT causes problems
43+
(see TODO.detail/default)
4244
* SELECT ... UNION ... ORDER BY fails when sort expr not in result list
4345
* Be smarter about promoting types when UNION merges different data types
4446
* SELECT ... UNION ... GROUP BY fails if column types disagree
@@ -128,16 +130,17 @@ INDEXES
128130
COMMANDS
129131

130132
* ALTER TABLE ADD COLUMN to inherited table put column in wrong place
133+
(see TODO.detail/inherit)
131134
* Add ALTER TABLE DROP/ALTER COLUMN feature
132135
* Allow CLUSTER on all tables at once, and improve CLUSTER
133136
* Generate error on CREATE OPERATOR of ~~, ~ and and ~*
134137
* Add SIMILAR TO to allow character classes, 'pg_[a-c]%'
135138
* Auto-destroy sequence on DROP of table with SERIAL(Ryan)
136139
* Allow LOCK TABLE tab1, tab2, tab3 so all tables locked in unison
137140
* Allow INSERT/UPDATE of system-generated oid value for a row
138-
* Allow ESCAPE '\' at the end of LIKE for ANSI compliance
141+
* Allow ESCAPE '\' at the end of LIKE for ANSI compliance(see TODO.detail/like)
139142
* Rewrite the LIKE handling by rewriting the user string with the
140-
supplied ESCAPE
143+
supplied ESCAPE(see TODO.detail/like)
141144
* Move LIKE index optimization handling to the optimizer
142145
* Allow RULE recompilation
143146
* Support UNION/INTERSECT/EXCEPT in sub-selects
@@ -181,7 +184,8 @@ MISC
181184
* Put sort files, large objects in their own directory
182185
* Do autocommit so always in a transaction block(?)
183186
* Show location of syntax error in query (see TODO.detail/yacc)
184-
* Redesign the function call interface to handle NULLs better(Jan)
187+
* Redesign the function call interface to handle NULLs better
188+
(see TODO.detail/function)
185189
* Document/trigger/rule so changes to pg_shadow recreate pg_pwd
186190
(see TODO.detail/pg_shadow)
187191
* Missing optimizer selectivities for date, r-tree, etc.
@@ -253,7 +257,7 @@ MISC
253257
allocation(see TODO.detail/memory)
254258
* fix memory leak in cache code when non-existant table is referenced
255259
* In WHERE tab1.x=3 AND tab1.x=tab2.y, add tab2.y=3
256-
* pass atttypmod through parser in more cases(Bruce)
260+
* pass atttypmod through parser in more cases(see TODO.detail/atttypmod)
257261
* remove duplicate type in/out functions for disk and net
258262
* change VACUUM ANALYZE to use btree comparison functions, not <,=,> calls
259263
* Allow persistent backends(see TODO.detail/persistent)

doc/TODO.detail/alpha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ From owner-pgsql-hackers@hub.org Fri May 14 16:00:46 1999
22
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
33
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id QAA02173
44
for <maillist@candle.pha.pa.us>; Fri, 14 May 1999 16:00:44 -0400 (EDT)
5-
Received: from hub.org (hub.org [209.167.229.1]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id QAA02824 for <maillist@candle.pha.pa.us>; Fri, 14 May 1999 16:00:45 -0400 (EDT)
5+
Received: from hub.org (hub.org [209.167.229.1]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id QAA02824 for <maillist@candle.pha.pa.us>; Fri, 14 May 1999 16:00:45 -0400 (EDT)
66
Received: from hub.org (hub.org [209.167.229.1])
77
by hub.org (8.9.3/8.9.3) with ESMTP id PAA47798;
88
Fri, 14 May 1999 15:57:54 -0400 (EDT)

doc/TODO.detail/arrays

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ From owner-pgsql-hackers@hub.org Wed Nov 25 19:01:02 1998
22
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
33
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id TAA16399
44
for <maillist@candle.pha.pa.us>; Wed, 25 Nov 1998 19:01:01 -0500 (EST)
5-
Received: from hub.org (majordom@hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id SAA05250 for <maillist@candle.pha.pa.us>; Wed, 25 Nov 1998 18:53:12 -0500 (EST)
5+
Received: from hub.org (majordom@hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id SAA05250 for <maillist@candle.pha.pa.us>; Wed, 25 Nov 1998 18:53:12 -0500 (EST)
66
Received: from localhost (majordom@localhost)
77
by hub.org (8.9.1/8.9.1) with SMTP id SAA17798;
88
Wed, 25 Nov 1998 18:49:38 -0500 (EST)

doc/TODO.detail/atttypmod

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
From tgl@sss.pgh.pa.us Sun May 23 12:32:34 1999
2+
Received: from sss.sss.pgh.pa.us (sss.pgh.pa.us [206.210.65.6])
3+
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id MAA23977
4+
for <maillist@candle.pha.pa.us>; Sun, 23 May 1999 12:32:33 -0400 (EDT)
5+
Received: from sss.sss.pgh.pa.us (localhost [127.0.0.1])
6+
by sss.sss.pgh.pa.us (8.9.1/8.9.1) with ESMTP id MAA19926;
7+
Sun, 23 May 1999 12:32:01 -0400 (EDT)
8+
To: Bruce Momjian <maillist@candle.pha.pa.us>
9+
cc: PostgreSQL-development <pgsql-hackers@postgreSQL.org>
10+
Subject: Re: [HACKERS] DEFAULT fixed
11+
In-reply-to: Your message of Sat, 22 May 1999 21:12:19 -0400 (EDT)
12+
<199905230112.VAA13489@candle.pha.pa.us>
13+
Date: Sun, 23 May 1999 12:32:01 -0400
14+
Message-ID: <19923.927477121@sss.pgh.pa.us>
15+
From: Tom Lane <tgl@sss.pgh.pa.us>
16+
Status: ROr
17+
18+
Bruce Momjian <maillist@candle.pha.pa.us> writes:
19+
>> It might be best to just bite the bullet and make the parser carry
20+
>> around both the type's OID and typmod at all times.
21+
22+
> I will try to add it, but I must not that there are some cases where I
23+
> don't have access to the atttypmod of the result, so it may not be
24+
> possible to do it in every case. Perhaps I should just leave this for
25+
> post 6.5, because we don't have any other bug reports on it.
26+
27+
After further thought, I think this may be a more difficult and subtle
28+
issue than we've realized. In the current state of the system, there
29+
are many places where you have a value that you can only know the type
30+
OID for, not atttypmod --- specifically, any intermediate expression
31+
result. Barring reworking the entire function-call mechanism to pass
32+
atttypmod around, that's not going to be possible to change.
33+
34+
The only context where you really know atttypmod is where you have
35+
just fetched a value out of a table column or are about to store a
36+
value into a table column. When storing, you need to be prepared to
37+
coerce the given value to the right type if *either* type OID or
38+
atttypmod is different --- but, in general, you don't know atttypmod
39+
for the given value. (In the cases I know of, you can deduce it by
40+
examining the value itself, but this requires type-specific knowledge.)
41+
42+
So on the whole I think this is something that has to be dealt with
43+
at the point of storing data into a tuple. Maybe we need a new
44+
fundamental operation for types that pay attention to atttypmod:
45+
"make this value match the typmod of the target column, which is
46+
thus-and-so". Trying to attack the problem from the source side by
47+
propagating typmod all around the parser is probably doomed to failure,
48+
because there will be many contexts where there's no way to know it.
49+
50+
Since you have a fix for the only symptom reported to date, I'm
51+
inclined to agree that we should leave well enough alone for now;
52+
there are other, bigger, problems that we need to address for 6.5.
53+
But I think we'll have to come back to this issue later.
54+
55+
regards, tom lane
56+

doc/TODO.detail/cnfify

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ From andreas.zeugswetter@telecom.at Mon Aug 31 06:31:13 1998
364364
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
365365
by candle.pha.pa.us (8.8.5/8.8.5) with ESMTP id GAA14231
366366
for <maillist@candle.pha.pa.us>; Mon, 31 Aug 1998 06:31:12 -0400 (EDT)
367-
Received: from gandalf.telecom.at (gandalf.telecom.at [194.118.26.84]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id GAA21099 for <maillist@candle.pha.pa.us>; Mon, 31 Aug 1998 06:23:41 -0400 (EDT)
367+
Received: from gandalf.telecom.at (gandalf.telecom.at [194.118.26.84]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id GAA21099 for <maillist@candle.pha.pa.us>; Mon, 31 Aug 1998 06:23:41 -0400 (EDT)
368368
Received: from zeugswettera.user.lan.at (zeugswettera.user.lan.at [10.4.123.227]) by gandalf.telecom.at (A.B.C.Delta4/8.8.8) with SMTP id MAA38132; Mon, 31 Aug 1998 12:22:07 +0200
369369
Received: by zeugswettera.user.lan.at with Microsoft Mail
370370
id <01BDD4DA.C7F5B690@zeugswettera.user.lan.at>; Mon, 31 Aug 1998 12:27:55 +0200
@@ -864,7 +864,7 @@ From bga@mug.org Tue Sep 8 03:39:37 1998
864864
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
865865
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id DAA06237
866866
for <maillist@candle.pha.pa.us>; Tue, 8 Sep 1998 03:39:36 -0400 (EDT)
867-
Received: from bgalli.mug.org (bajor.mug.org [207.158.132.1]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id DAA03648 for <maillist@candle.pha.pa.us>; Tue, 8 Sep 1998 03:38:52 -0400 (EDT)
867+
Received: from bgalli.mug.org (bajor.mug.org [207.158.132.1]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id DAA03648 for <maillist@candle.pha.pa.us>; Tue, 8 Sep 1998 03:38:52 -0400 (EDT)
868868
Received: from localhost (bga@localhost) by bgalli.mug.org (8.8.7/SCO5) with SMTP id DAA02895 for <maillist@candle.pha.pa.us>; Tue, 8 Sep 1998 03:31:26 -0400 (EDT)
869869
Message-Id: <199809080731.DAA02895@bgalli.mug.org>
870870
X-Authentication-Warning: bgalli.mug.org: bga@localhost didn't use HELO protocol
@@ -930,7 +930,7 @@ From owner-pgsql-general@hub.org Thu Oct 1 14:00:57 1998
930930
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
931931
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id OAA12443
932932
for <maillist@candle.pha.pa.us>; Thu, 1 Oct 1998 14:00:56 -0400 (EDT)
933-
Received: from hub.org (majordom@hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id NAA07930 for <maillist@candle.pha.pa.us>; Thu, 1 Oct 1998 13:57:47 -0400 (EDT)
933+
Received: from hub.org (majordom@hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id NAA07930 for <maillist@candle.pha.pa.us>; Thu, 1 Oct 1998 13:57:47 -0400 (EDT)
934934
Received: from localhost (majordom@localhost)
935935
by hub.org (8.8.8/8.8.8) with SMTP id NAA26913;
936936
Thu, 1 Oct 1998 13:56:29 -0400 (EDT)
@@ -1189,7 +1189,7 @@ From owner-pgsql-hackers@hub.org Fri Oct 2 19:28:09 1998
11891189
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
11901190
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id TAA23341
11911191
for <maillist@candle.pha.pa.us>; Fri, 2 Oct 1998 19:28:08 -0400 (EDT)
1192-
Received: from hub.org (majordom@hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id SAA18003 for <maillist@candle.pha.pa.us>; Fri, 2 Oct 1998 18:21:37 -0400 (EDT)
1192+
Received: from hub.org (majordom@hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id SAA18003 for <maillist@candle.pha.pa.us>; Fri, 2 Oct 1998 18:21:37 -0400 (EDT)
11931193
Received: from localhost (majordom@localhost)
11941194
by hub.org (8.8.8/8.8.8) with SMTP id SAA01250;
11951195
Fri, 2 Oct 1998 18:08:02 -0400 (EDT)
@@ -1249,7 +1249,7 @@ From owner-pgsql-hackers@hub.org Sat Oct 3 23:32:35 1998
12491249
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
12501250
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id XAA06644
12511251
for <maillist@candle.pha.pa.us>; Sat, 3 Oct 1998 23:31:13 -0400 (EDT)
1252-
Received: from hub.org (root@hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id XAA26912 for <maillist@candle.pha.pa.us>; Sat, 3 Oct 1998 23:14:01 -0400 (EDT)
1252+
Received: from hub.org (root@hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id XAA26912 for <maillist@candle.pha.pa.us>; Sat, 3 Oct 1998 23:14:01 -0400 (EDT)
12531253
Received: from localhost (majordom@localhost)
12541254
by hub.org (8.8.8/8.8.8) with SMTP id WAA04407;
12551255
Sat, 3 Oct 1998 22:07:05 -0400 (EDT)
@@ -1337,7 +1337,7 @@ From taral@mail.utexas.edu Sat Oct 3 22:43:41 1998
13371337
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
13381338
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id WAA05961
13391339
for <maillist@candle.pha.pa.us>; Sat, 3 Oct 1998 22:42:18 -0400 (EDT)
1340-
Received: from mail.utexas.edu (wb2-a.mail.utexas.edu [128.83.126.136]) by renoir.op.net (o1/$Revision: 1.3 $) with SMTP id WAA25111 for <maillist@candle.pha.pa.us>; Sat, 3 Oct 1998 22:27:34 -0400 (EDT)
1340+
Received: from mail.utexas.edu (wb2-a.mail.utexas.edu [128.83.126.136]) by renoir.op.net (o1/$Revision: 1.4 $) with SMTP id WAA25111 for <maillist@candle.pha.pa.us>; Sat, 3 Oct 1998 22:27:34 -0400 (EDT)
13411341
Received: (qmail 25622 invoked by uid 0); 4 Oct 1998 02:26:21 -0000
13421342
Received: from dial-42-9.ots.utexas.edu (HELO taral) (128.83.111.217)
13431343
by umbs-smtp-2 with SMTP; 4 Oct 1998 02:26:21 -0000
@@ -1387,7 +1387,7 @@ From daveh@insightdist.com Mon Nov 9 13:31:07 1998
13871387
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
13881388
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id NAA00997
13891389
for <maillist@candle.pha.pa.us>; Mon, 9 Nov 1998 13:31:00 -0500 (EST)
1390-
Received: from u1.abs.net (root@u1.abs.net [207.114.0.131]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id NAA26657 for <maillist@candle.pha.pa.us>; Mon, 9 Nov 1998 13:10:14 -0500 (EST)
1390+
Received: from u1.abs.net (root@u1.abs.net [207.114.0.131]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id NAA26657 for <maillist@candle.pha.pa.us>; Mon, 9 Nov 1998 13:10:14 -0500 (EST)
13911391
Received: from insightdist.com (nobody@localhost)
13921392
by u1.abs.net (8.9.0/8.9.0) with UUCP id MAA17710
13931393
for maillist@candle.pha.pa.us; Mon, 9 Nov 1998 12:52:05 -0500 (EST)

doc/TODO.detail/default

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
From tgl@sss.pgh.pa.us Sun May 23 18:59:22 1999
2+
Received: from sss.sss.pgh.pa.us (sss.pgh.pa.us [206.210.65.6])
3+
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id SAA08491
4+
for <maillist@candle.pha.pa.us>; Sun, 23 May 1999 18:59:21 -0400 (EDT)
5+
Received: from sss.sss.pgh.pa.us (localhost [127.0.0.1])
6+
by sss.sss.pgh.pa.us (8.9.1/8.9.1) with ESMTP id SAA27952;
7+
Sun, 23 May 1999 18:58:53 -0400 (EDT)
8+
To: Bruce Momjian <maillist@candle.pha.pa.us>
9+
cc: PostgreSQL-development <pgsql-hackers@postgreSQL.org>
10+
Subject: Re: [HACKERS] DEFAULT fixed
11+
In-reply-to: Your message of Sat, 22 May 1999 21:12:19 -0400 (EDT)
12+
<199905230112.VAA13489@candle.pha.pa.us>
13+
Date: Sun, 23 May 1999 18:58:52 -0400
14+
Message-ID: <27950.927500332@sss.pgh.pa.us>
15+
From: Tom Lane <tgl@sss.pgh.pa.us>
16+
Status: ROr
17+
18+
Actually, it's not as fixed as all that...
19+
20+
create table foo1 (a char(5) default '', b int4);
21+
insert into foo1 (b) values (334);
22+
select * from foo1;
23+
a | b
24+
-----+---
25+
|334
26+
(1 row)
27+
28+
Good, the basic case is fixed, but:
29+
30+
create table foo2 (a char(5) default text '', b int4);
31+
insert into foo2 (b) values (334);
32+
select * from foo2;
33+
a| b
34+
-+--
35+
|16
36+
(1 row)
37+
38+
Ooops.
39+
40+
What you seem to have done is twiddle the handling of DEFAULT clauses
41+
so that the value stored for the default expression is pre-coerced to the
42+
column type. That's good as far as it goes, but it fails in cases where
43+
the stored value has to be of a different type.
44+
45+
My guess is that what *really* ought to happen here is that
46+
transformInsertStmt should check the type of the value it's gotten from
47+
the default clause and apply coerce_type if necessary.
48+
49+
Unless someone can come up with a less artificial example than the one
50+
above, I'm inclined to leave it alone for 6.5. This is the same code
51+
area that will have to be redone to fix the INSERT ... SELECT problem
52+
I was chasing earlier today: coercion of the values produced by SELECT
53+
will have to wait until the tail end of transformInsertStmt, and we
54+
might as well make wrong-type default constants get fixed in the same
55+
place. So I'm not eager to write some throwaway code to patch a problem
56+
that no one is likely to see in practice. What's your feeling about it?
57+
58+
regards, tom lane
59+

doc/TODO.detail/flock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ From owner-pgsql-hackers@hub.org Sun Aug 30 13:01:10 1998
118118
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
119119
by candle.pha.pa.us (8.8.5/8.8.5) with ESMTP id NAA13785
120120
for <maillist@candle.pha.pa.us>; Sun, 30 Aug 1998 13:01:09 -0400 (EDT)
121-
Received: from hub.org (hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id MAA29386 for <maillist@candle.pha.pa.us>; Sun, 30 Aug 1998 12:58:24 -0400 (EDT)
121+
Received: from hub.org (hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id MAA29386 for <maillist@candle.pha.pa.us>; Sun, 30 Aug 1998 12:58:24 -0400 (EDT)
122122
Received: from localhost (majordom@localhost) by hub.org (8.8.8/8.7.5) with SMTP id MAA11406; Sun, 30 Aug 1998 12:54:48 -0400 (EDT)
123123
Received: by hub.org (TLB v0.10a (1.23 tibbs 1997/01/09 00:29:32)); Sun, 30 Aug 1998 12:52:22 +0000 (EDT)
124124
Received: (from majordom@localhost) by hub.org (8.8.8/8.7.5) id MAA11310 for pgsql-hackers-outgoing; Sun, 30 Aug 1998 12:52:20 -0400 (EDT)
@@ -278,7 +278,7 @@ From owner-pgsql-hackers@hub.org Mon Aug 31 11:31:19 1998
278278
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
279279
by candle.pha.pa.us (8.8.5/8.8.5) with ESMTP id LAA21195
280280
for <maillist@candle.pha.pa.us>; Mon, 31 Aug 1998 11:31:13 -0400 (EDT)
281-
Received: from hub.org (hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id LAA06827 for <maillist@candle.pha.pa.us>; Mon, 31 Aug 1998 11:17:41 -0400 (EDT)
281+
Received: from hub.org (hub.org [209.47.148.200]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id LAA06827 for <maillist@candle.pha.pa.us>; Mon, 31 Aug 1998 11:17:41 -0400 (EDT)
282282
Received: from localhost (majordom@localhost) by hub.org (8.8.8/8.7.5) with SMTP id LAA24792; Mon, 31 Aug 1998 11:12:18 -0400 (EDT)
283283
Received: by hub.org (TLB v0.10a (1.23 tibbs 1997/01/09 00:29:32)); Mon, 31 Aug 1998 11:10:31 +0000 (EDT)
284284
Received: (from majordom@localhost) by hub.org (8.8.8/8.7.5) id LAA24742 for pgsql-hackers-outgoing; Mon, 31 Aug 1998 11:10:29 -0400 (EDT)

doc/TODO.detail/fsync

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ From owner-pgsql-general@hub.org Fri Dec 18 06:31:23 1998
22
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
33
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id GAA05554
44
for <maillist@candle.pha.pa.us>; Fri, 18 Dec 1998 06:31:21 -0500 (EST)
5-
Received: from hub.org (majordom@hub.org [209.47.145.100]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id EAA21127 for <maillist@candle.pha.pa.us>; Fri, 18 Dec 1998 04:46:38 -0500 (EST)
5+
Received: from hub.org (majordom@hub.org [209.47.145.100]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id EAA21127 for <maillist@candle.pha.pa.us>; Fri, 18 Dec 1998 04:46:38 -0500 (EST)
66
Received: from localhost (majordom@localhost)
77
by hub.org (8.9.1/8.9.1) with SMTP id EAA01409;
88
Fri, 18 Dec 1998 04:44:19 -0500 (EST)

0 commit comments

Comments
 (0)