OSDN Git Service

pg-rex/syncrep.git
22 years agoAdd mention that createlang.sh indirection not needed but kept for later.
Bruce Momjian [Thu, 3 Jan 2002 08:38:00 +0000 (08:38 +0000)]
Add mention that createlang.sh indirection not needed but kept for later.

22 years agoUpdate FAQ_DEV.
Bruce Momjian [Thu, 3 Jan 2002 08:20:54 +0000 (08:20 +0000)]
Update FAQ_DEV.

22 years agoUpdate FAQ_DEV.
Bruce Momjian [Thu, 3 Jan 2002 08:13:51 +0000 (08:13 +0000)]
Update FAQ_DEV.

22 years agoAdded
Bruce Momjian [Thu, 3 Jan 2002 08:04:16 +0000 (08:04 +0000)]
Added

> * Add config file check for $ODBCINI, $HOME/.odbc.ini, and /etc/odbc.ini

22 years agoAdded suggested syntax:
Bruce Momjian [Thu, 3 Jan 2002 08:01:17 +0000 (08:01 +0000)]
Added suggested syntax:

> * Make it easier to create a database owned by someone who can't createdb,
>   perhaps CREATE DATABASE dbname WITH USER = "user"

22 years ago> > On Fri, Dec 21, 2001 at 11:43:21AM +0800, Christopher Kings-Lynne
Bruce Momjian [Thu, 3 Jan 2002 07:21:48 +0000 (07:21 +0000)]
> > On Fri, Dec 21, 2001 at 11:43:21AM +0800, Christopher Kings-Lynne
wrote:
> > > Just testing pgcrypto on freebsd/alpha.  I get some warnings:
> > They should be harmless, although I should fix them.
>
> The actual code is:
>
>     if ((dlen & 15) || (((unsigned) res) & 3))
>         return -1;

> Hard to imagine how (uint *) & 3 makes any sense, unless res isn't
> always a (uint8 *).  Is that true?

At some point it was casted to (uint32*) so I wanted to be sure its ok.
ATM its pointless.  Please apply the following patch.

--
marko

22 years agoAdd mention of index on foreign key for frequently updated primary key
Bruce Momjian [Thu, 3 Jan 2002 06:26:22 +0000 (06:26 +0000)]
Add mention of index on foreign key for frequently updated primary key
tables.

22 years agodroplang had same problem as createlang; default are backwards and did
Bruce Momjian [Thu, 3 Jan 2002 06:09:02 +0000 (06:09 +0000)]
droplang had same problem as createlang;  default are backwards and did
not work.  Fixed to match createlang.

22 years agoAdd to pool discussion.
Bruce Momjian [Thu, 3 Jan 2002 05:52:48 +0000 (05:52 +0000)]
Add to pool discussion.

22 years agoAdded
Bruce Momjian [Thu, 3 Jan 2002 05:48:48 +0000 (05:48 +0000)]
Added

<  o Move to using 'make' rather than 'ant'(?)
---
>  o Support both 'make' and 'ant'

22 years agoAdd mention of PRIMARY in ALTER TABLE ... [ UNIQUE | PRIMARY ]
Bruce Momjian [Thu, 3 Jan 2002 05:37:43 +0000 (05:37 +0000)]
Add mention of PRIMARY in ALTER TABLE ... [ UNIQUE | PRIMARY ]

22 years agoIn createlang, make dbname optional, not langname, or rather, make
Bruce Momjian [Thu, 3 Jan 2002 05:30:04 +0000 (05:30 +0000)]
In createlang, make dbname optional, not langname, or rather, make
existing code of dbname optional actually work.

22 years agoRemove:
Bruce Momjian [Thu, 3 Jan 2002 05:20:34 +0000 (05:20 +0000)]
Remove:

< * Change 'createlang [langname] dbname' to 'createlang langname [dbname]'

22 years agoAdded:
Bruce Momjian [Thu, 3 Jan 2002 05:06:50 +0000 (05:06 +0000)]
Added:

> * Change 'createlang [langname] dbname' to 'createlang langname [dbname]'

22 years agoGuard against roundoff errors in new selectivity-estimation code,
Tom Lane [Thu, 3 Jan 2002 04:02:34 +0000 (04:02 +0000)]
Guard against roundoff errors in new selectivity-estimation code,
per bug report from Laurette Cisneros.

22 years agoFix to_timestamp/to_date so that zero year input for Y, YY, or YYY
Tom Lane [Wed, 2 Jan 2002 22:09:23 +0000 (22:09 +0000)]
Fix to_timestamp/to_date so that zero year input for Y, YY, or YYY
formats will be taken as 2000, not year zero.  Per bug report from
Aasmund Midttun Godal.  Fix from Karel Zak.

22 years agoFix incorrect description of rowtype variable declarations. Eventually
Tom Lane [Wed, 2 Jan 2002 00:41:26 +0000 (00:41 +0000)]
Fix incorrect description of rowtype variable declarations.  Eventually
(IMHO) the code should be fixed to do what the documentation formerly
claimed, and then revert this change.

22 years agoDo not accept interrupts in RESUME_INTERRUPTS() and END_CRIT_SECTION()
Tom Lane [Tue, 1 Jan 2002 23:16:22 +0000 (23:16 +0000)]
Do not accept interrupts in RESUME_INTERRUPTS() and END_CRIT_SECTION()
macros, but only at explicit CHECK_FOR_INTERRUPTS() calls.  Not clear
whether overenthusiastic acceptance of interrupts accounts for any real
bugs, but it definitely seems risky and unnecessary.

22 years agoFix race condition that could allow two concurrent transactions
Tom Lane [Tue, 1 Jan 2002 20:32:37 +0000 (20:32 +0000)]
Fix race condition that could allow two concurrent transactions
to insert the same key into a supposedly unique index.  The bug is of
low probability, and may not explain any of the recent reports of
duplicated rows; but a bug is a bug.

22 years agoRename TIME token to ISOTIME to eliminate conflict with gram.y parser
Thomas G. Lockhart [Tue, 1 Jan 2002 02:54:33 +0000 (02:54 +0000)]
Rename TIME token to ISOTIME to eliminate conflict with gram.y parser
 token. Seems to be isolated to datetime.c and datetime.h.

22 years agoUpdate dbase for Maarten.Boekhold.
Bruce Momjian [Mon, 31 Dec 2001 13:32:04 +0000 (13:32 +0000)]
Update dbase for Maarten.Boekhold.

22 years agoMake sure that all <ctype.h> routines are called with unsigned char
Tom Lane [Sun, 30 Dec 2001 23:09:42 +0000 (23:09 +0000)]
Make sure that all <ctype.h> routines are called with unsigned char
values; it's not portable to call them with signed chars.  I recall doing
this for the last release, but a few more uncasted calls have snuck in.

22 years agoRepair example, per note in interactive docs.
Tom Lane [Sun, 30 Dec 2001 04:36:52 +0000 (04:36 +0000)]
Repair example, per note in interactive docs.

22 years agoUpdate FAQ_DEV.
Bruce Momjian [Sun, 30 Dec 2001 04:31:29 +0000 (04:31 +0000)]
Update FAQ_DEV.

22 years ago*** empty log message ***
Bruce Momjian [Sun, 30 Dec 2001 01:51:10 +0000 (01:51 +0000)]
*** empty log message ***

22 years agoAdd
Bruce Momjian [Sun, 30 Dec 2001 01:48:23 +0000 (01:48 +0000)]
Add

> * Make locking of shared data structures more fine-grained

22 years agoOops, only wanted datetime.c changes in there. lock stuff reversed out.
Bruce Momjian [Sat, 29 Dec 2001 21:30:32 +0000 (21:30 +0000)]
Oops, only wanted datetime.c changes in there.  lock stuff reversed out.

22 years agoFix newly introduced datetime.c compile failure; not enough parens.
Bruce Momjian [Sat, 29 Dec 2001 21:28:18 +0000 (21:28 +0000)]
Fix newly introduced datetime.c compile failure;  not enough parens.

22 years agoAdded
Bruce Momjian [Sat, 29 Dec 2001 20:40:42 +0000 (20:40 +0000)]
Added

> * Change factorial to return a numeric

22 years agoAdd missing <varlistentry>; shown in build logs.
Bruce Momjian [Sat, 29 Dec 2001 20:29:49 +0000 (20:29 +0000)]
Add missing <varlistentry>;  shown in build logs.

22 years agoCheck a bit more carefully for preceeding ISO field tags
Thomas G. Lockhart [Sat, 29 Dec 2001 18:40:58 +0000 (18:40 +0000)]
Check a bit more carefully for preceeding ISO field tags
 when decoding date fields.

22 years agoDocument the precision arguments for date/time types per SQL9x.
Thomas G. Lockhart [Sat, 29 Dec 2001 18:35:54 +0000 (18:35 +0000)]
Document the precision arguments for date/time types per SQL9x.
Update the list of recognized time zones.
Document the range of arguments allowed for SET TIME ZONE.
Still need to add info on other date/time symbols (e.g. "AM", "T")
 and to freshen the docs on the date/time parsing rules.

22 years agoRework the date/time parsing to tighten up some cases and to enable other
Thomas G. Lockhart [Sat, 29 Dec 2001 18:31:48 +0000 (18:31 +0000)]
Rework the date/time parsing to tighten up some cases and to enable other
 cases which should have worked but did not.
Now supports julian day (J2452271), ISO time labels (T040506) and various
 combinations of spaces and run-togethers of dates, times, and time zones.
All regression tests pass, and I have more tests to add after the 7.2
 release (don't want to require changes to the ancillary horology result
 files until after then).

22 years agoAdd crossdb TODO.detail item.
Bruce Momjian [Sat, 29 Dec 2001 17:58:15 +0000 (17:58 +0000)]
Add crossdb TODO.detail item.

22 years agoAdd crossdb TODO.detail item:
Bruce Momjian [Sat, 29 Dec 2001 17:56:46 +0000 (17:56 +0000)]
Add crossdb TODO.detail item:

---
> * Allow queries across multiple databases [crossdb]

22 years agoUpdate server DEBUG startup tag fixes:
Bruce Momjian [Sat, 29 Dec 2001 17:19:03 +0000 (17:19 +0000)]
Update server DEBUG startup tag fixes:

> * Change DEBUG startup tag to NOTICE;  change NOTICE to output to client
>   only if client exists (Bruce)

This item is not done:

< * -Make elog(LOG) in WAL its own output type, distinct from DEBUG (Peter E)
---
> * Make elog(LOG) in WAL its own output type, distinct from DEBUG

22 years agoAdd to java.
Bruce Momjian [Sat, 29 Dec 2001 17:06:22 +0000 (17:06 +0000)]
Add to java.

22 years agoAdded
Bruce Momjian [Sat, 29 Dec 2001 05:22:37 +0000 (05:22 +0000)]
Added

> * Add --port flag to regression tests

22 years agoUpdate FAQ_DEV.
Bruce Momjian [Sat, 29 Dec 2001 05:15:42 +0000 (05:15 +0000)]
Update FAQ_DEV.

22 years agoUpdate FAQ_DEV.
Bruce Momjian [Sat, 29 Dec 2001 05:12:45 +0000 (05:12 +0000)]
Update FAQ_DEV.

22 years agoAdded
Bruce Momjian [Sat, 29 Dec 2001 04:55:45 +0000 (04:55 +0000)]
Added

> * Change FIXED_CHAR_SEL to 0.20 from 0.04 to give better selectivity (Bruce)

22 years agoUpdate FAQ_DEV.
Bruce Momjian [Sat, 29 Dec 2001 03:42:59 +0000 (03:42 +0000)]
Update FAQ_DEV.

22 years agoImprove LOCK_DEBUG logging code for LWLocks.
Tom Lane [Fri, 28 Dec 2001 23:26:04 +0000 (23:26 +0000)]
Improve LOCK_DEBUG logging code for LWLocks.

22 years agoAdded
Bruce Momjian [Fri, 28 Dec 2001 19:47:50 +0000 (19:47 +0000)]
Added

> * Report failure to find readline or zlib at end of configure run

22 years agoAdd
Bruce Momjian [Fri, 28 Dec 2001 19:44:20 +0000 (19:44 +0000)]
Add
>  o Change syntax to WITH DELIMITER, (keep old syntax around?)

22 years agoAdd
Bruce Momjian [Fri, 28 Dec 2001 19:35:52 +0000 (19:35 +0000)]
Add

> * Add WAL index reliability improvement to non-btree indexes

22 years agoUpdate from Serguei Mokhov
Peter Eisentraut [Fri, 28 Dec 2001 18:47:54 +0000 (18:47 +0000)]
Update from Serguei Mokhov

22 years agoAdd pljava messages.
Bruce Momjian [Fri, 28 Dec 2001 18:33:44 +0000 (18:33 +0000)]
Add pljava messages.

22 years agoTypo.
Bruce Momjian [Fri, 28 Dec 2001 18:31:14 +0000 (18:31 +0000)]
Typo.

< * Improve access-permissions check on data directory in CYGWIN (Tom)
---
> * Improve access-permissions check on data directory in Cygwin (Tom)

22 years agoAdded
Bruce Momjian [Fri, 28 Dec 2001 18:30:50 +0000 (18:30 +0000)]
Added

<
---
> * Improve access-permissions check on data directory in CYGWIN (Tom)

22 years agoEnsure that all direct uses of spinlock-protected data structures use
Tom Lane [Fri, 28 Dec 2001 18:16:43 +0000 (18:16 +0000)]
Ensure that all direct uses of spinlock-protected data structures use
'volatile' pointers to access those structures, so that optimizing
compilers will not decide to move the structure accesses outside of the
spinlock-acquire-to-spinlock-release sequence.  There are no known bugs
in these uses at present, but based on bad experience with lwlock.c,
it seems prudent to ensure that we protect these other uses too.
Per pghackers discussion around 12-Dec.  (Note: it should not be
necessary to worry about structures protected by LWLocks, since the
LWLock acquire and release operations are not inline macros.)

22 years agoAdd
Bruce Momjian [Fri, 28 Dec 2001 05:26:25 +0000 (05:26 +0000)]
Add

> * Allow binding query args over FE/BE protocol

22 years agoAdded
Bruce Momjian [Fri, 28 Dec 2001 05:09:13 +0000 (05:09 +0000)]
Added

>  o Have ALTER TABLE OWNER change all dependant objects like indexes

22 years agoAdd thread item.
Bruce Momjian [Fri, 28 Dec 2001 05:04:59 +0000 (05:04 +0000)]
Add thread item.

22 years agoAdd more Christof Petig ecpg items.
Bruce Momjian [Fri, 28 Dec 2001 05:03:10 +0000 (05:03 +0000)]
Add more Christof Petig ecpg items.

22 years agoChristof Petig changes where for HISTORY, not TODO.
Bruce Momjian [Fri, 28 Dec 2001 05:02:50 +0000 (05:02 +0000)]
Christof Petig changes where for HISTORY, not TODO.

22 years agoOops, back out paren fix. That is for 7.3.
Bruce Momjian [Fri, 28 Dec 2001 05:01:05 +0000 (05:01 +0000)]
Oops, back out paren fix.  That is for 7.3.

22 years agoAdd mention of Christof Petig for ecpg items.
Bruce Momjian [Fri, 28 Dec 2001 05:00:32 +0000 (05:00 +0000)]
Add mention of Christof Petig for ecpg items.

22 years agoAdded for Christof Petig:
Bruce Momjian [Fri, 28 Dec 2001 04:57:55 +0000 (04:57 +0000)]
Added for Christof Petig:

<  o Allow SELECT of array of strings into a auto-sized variable
---
>  o -Allow SELECT of array of strings into a auto-sized variable

>  o auto allocation for indicator variable arrays (int *ind_p=NULL)
>  o auto allocation for string arrays (char **foo_pp=NULL)
>  o ECPGfree_auto_mem fixed
>  o all function names with external linkage are now prefixed by ECPG

22 years agoAdded:
Bruce Momjian [Fri, 28 Dec 2001 04:32:44 +0000 (04:32 +0000)]
Added:

> * Add OpenBSD's getpeereid() call for local socket authentication (Bruce)

22 years agoUpdate to show current capability and future direction, from Peter:
Bruce Momjian [Fri, 28 Dec 2001 04:30:18 +0000 (04:30 +0000)]
Update to show current capability and future direction, from Peter:

> * -Allow secure single-user access without passwords using Unix socket permissions
> * Make single-user local socket access permissions the default (Peter E)

22 years agoAdded:
Bruce Momjian [Fri, 28 Dec 2001 03:30:30 +0000 (03:30 +0000)]
Added:

! * Add PGPASSWORDFILE environment variable or ~/.pgpass to store
!   user/host/password combinations

22 years agoI know we talked about this in the past but I never got it on the TODO
Bruce Momjian [Fri, 28 Dec 2001 02:30:37 +0000 (02:30 +0000)]
I know we talked about this in the past but I never got it on the TODO
list:

* Add optional CRC checksum to heap and index pages

22 years agoExpand on description of when to use or not use TRUST auth method.
Tom Lane [Thu, 27 Dec 2001 21:37:34 +0000 (21:37 +0000)]
Expand on description of when to use or not use TRUST auth method.

22 years agoDocument obj_description and col_description functions; expand
Tom Lane [Thu, 27 Dec 2001 21:36:57 +0000 (21:36 +0000)]
Document obj_description and col_description functions; expand
description of COMMENT command.

22 years agoSmall fixes
Peter Eisentraut [Thu, 27 Dec 2001 21:10:15 +0000 (21:10 +0000)]
Small fixes

22 years agoUpdate from Serguei Mokhov
Peter Eisentraut [Thu, 27 Dec 2001 21:06:07 +0000 (21:06 +0000)]
Update from Serguei Mokhov

22 years agoMention datatype() casting change.
Bruce Momjian [Thu, 27 Dec 2001 04:46:08 +0000 (04:46 +0000)]
Mention datatype() casting change.

22 years agoUpdate TODO list.
Bruce Momjian [Thu, 27 Dec 2001 04:28:37 +0000 (04:28 +0000)]
Update TODO list.

22 years agoUpdate for new timestamp behavior.
Bruce Momjian [Thu, 27 Dec 2001 00:04:44 +0000 (00:04 +0000)]
Update for new timestamp behavior.

22 years agoAdd cachable item.
Bruce Momjian [Wed, 26 Dec 2001 23:47:32 +0000 (23:47 +0000)]
Add cachable item.

22 years agoPlace PAM before REJECT in sample file.
Bruce Momjian [Mon, 24 Dec 2001 04:44:03 +0000 (04:44 +0000)]
Place PAM before REJECT in sample file.

22 years agoFix directions for a client-only install, per comments from Alexey Borzov
Tom Lane [Sun, 23 Dec 2001 20:45:11 +0000 (20:45 +0000)]
Fix directions for a client-only install, per comments from Alexey Borzov
and Vivek Khera.

22 years agoUpdate description of CURRENT_TIMESTAMP and friends.
Tom Lane [Sun, 23 Dec 2001 20:22:49 +0000 (20:22 +0000)]
Update description of CURRENT_TIMESTAMP and friends.

22 years agoType interval takes a precision, too.
Tom Lane [Sun, 23 Dec 2001 20:21:37 +0000 (20:21 +0000)]
Type interval takes a precision, too.

22 years agoLots of content and formatting improvements in release notes. HISTORY
Peter Eisentraut [Sun, 23 Dec 2001 18:20:05 +0000 (18:20 +0000)]
Lots of content and formatting improvements in release notes.  HISTORY
now generated from DocBook sources.

22 years agoAdd missing id attribute.
Peter Eisentraut [Sun, 23 Dec 2001 18:18:09 +0000 (18:18 +0000)]
Add missing id attribute.

22 years agoUpdated ECPG items
Michael Meskes [Sun, 23 Dec 2001 12:21:05 +0000 (12:21 +0000)]
Updated ECPG items

22 years ago- Removed space_or_nl and line_end from pgc.l.
Michael Meskes [Sun, 23 Dec 2001 12:17:41 +0000 (12:17 +0000)]
- Removed space_or_nl and line_end from pgc.l.
- Fixed several bugs concerning arrays of structs including a memory
  allocation bug.

22 years agoFix mispeling ...
Tom Lane [Sun, 23 Dec 2001 07:25:39 +0000 (07:25 +0000)]
Fix mispeling ...

22 years agoCzech translation updates from Karel Zak
Peter Eisentraut [Fri, 21 Dec 2001 22:30:49 +0000 (22:30 +0000)]
Czech translation updates from Karel Zak

22 years agoFix error
Peter Eisentraut [Fri, 21 Dec 2001 22:27:34 +0000 (22:27 +0000)]
Fix error

22 years agoUse MemSet() rather than a loop to do blank-padding on PS_USE_CLOBBER_ARGV
Tom Lane [Fri, 21 Dec 2001 15:22:09 +0000 (15:22 +0000)]
Use MemSet() rather than a loop to do blank-padding on PS_USE_CLOBBER_ARGV
machines.  I have just been observing some scenarios where set_ps_display
accounts for more than 10% of the backend CPU, and this loop has to be
the reason.

22 years agoAdd full name of the month of July to the lookup table.
Thomas G. Lockhart [Fri, 21 Dec 2001 06:03:27 +0000 (06:03 +0000)]
Add full name of the month of July to the lookup table.
Thanks to Greg Sabino Mullane <greg@turnstep.com> for finding the problem.

22 years agoRemove duplicate lines from fouled up last commit (my DSL line failed
Thomas G. Lockhart [Fri, 21 Dec 2001 06:01:36 +0000 (06:01 +0000)]
Remove duplicate lines from fouled up last commit (my DSL line failed
 during the CVS update, leaving locks and bad files).

22 years agoUpdates for next release from Bernd Tegge.
Thomas G. Lockhart [Fri, 21 Dec 2001 06:00:15 +0000 (06:00 +0000)]
Updates for next release from Bernd Tegge.

22 years agoDo not require iconv for dbase conversion.
Bruce Momjian [Fri, 21 Dec 2001 05:29:46 +0000 (05:29 +0000)]
Do not require iconv for dbase conversion.

22 years agoRemove:
Bruce Momjian [Fri, 21 Dec 2001 05:27:19 +0000 (05:27 +0000)]
Remove:

* Fix contrib/dbase to not require libiconv

22 years ago* Fix contrib/dbase to not require libiconv.
Bruce Momjian [Fri, 21 Dec 2001 04:31:58 +0000 (04:31 +0000)]
* Fix contrib/dbase to not require libiconv.

22 years agoAllow contrib/dbase to compile if HAVE_ICONV_H it not defined. This is
Bruce Momjian [Fri, 21 Dec 2001 04:30:59 +0000 (04:30 +0000)]
Allow contrib/dbase to compile if HAVE_ICONV_H it not defined.  This is
only a partial solution but a step in the right direction.

22 years agoAdd needed libiconv link to contrib/dbase, per Christopher Kings-Lynne
Bruce Momjian [Fri, 21 Dec 2001 04:13:12 +0000 (04:13 +0000)]
Add needed libiconv link to contrib/dbase, per Christopher Kings-Lynne

22 years agopre-page -> after-change, per Vadim.
Bruce Momjian [Fri, 21 Dec 2001 03:55:45 +0000 (03:55 +0000)]
pre-page ->  after-change, per Vadim.

22 years agoSpiff up discussion of precision on date/time data types.
Thomas G. Lockhart [Fri, 21 Dec 2001 03:54:02 +0000 (03:54 +0000)]
Spiff up discussion of precision on date/time data types.
Add a NetBSD/alpha and update info on a few other platforms.

22 years agoAllow location of index creation perl script be be specified in
Thomas G. Lockhart [Fri, 21 Dec 2001 03:53:04 +0000 (03:53 +0000)]
Allow location of index creation perl script be be specified in
 Makefile.custom, to allow finding it on Mandrake systems (at least).

22 years agoSelect proper geometry comparison file for freebsd/alpha.
Tom Lane [Fri, 21 Dec 2001 03:03:55 +0000 (03:03 +0000)]
Select proper geometry comparison file for freebsd/alpha.
Per report from Christopher Kings-Lynne.

22 years agoPre-page write additions.
Bruce Momjian [Thu, 20 Dec 2001 22:01:29 +0000 (22:01 +0000)]
Pre-page write additions.

22 years agoAdd memcmp() test and new memcmp.c file, for SunOS. Tested by Tatsuo.
Bruce Momjian [Thu, 20 Dec 2001 21:23:05 +0000 (21:23 +0000)]
Add memcmp() test and new memcmp.c file, for SunOS.  Tested by Tatsuo.

22 years agoFix for SunOS4 horology test
Tatsuo Ishii [Thu, 20 Dec 2001 04:25:00 +0000 (04:25 +0000)]
Fix for SunOS4 horology test

22 years agoMIN() -> Min, fixes compile problem.
Bruce Momjian [Thu, 20 Dec 2001 02:39:26 +0000 (02:39 +0000)]
MIN() -> Min, fixes compile problem.

22 years agoReflect Tom's change
Tatsuo Ishii [Thu, 20 Dec 2001 01:56:08 +0000 (01:56 +0000)]
Reflect Tom's change