diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-12-23 19:55:51 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-12-23 19:55:51 +0000 |
commit | 0c714ea9ae2d8d4092b0ef6bc591bdafda8dd478 (patch) | |
tree | 96269199fd73d844ca4c08354071d708e3869a4c /src | |
parent | 2119b523c5cfc33c129f0c4adbebcfa1b8fbb8ed (diff) | |
download | postgresql-0c714ea9ae2d8d4092b0ef6bc591bdafda8dd478.tar.gz postgresql-0c714ea9ae2d8d4092b0ef6bc591bdafda8dd478.zip |
Lengthen some time conversion routine names now that longer names
(> 16 characters) are allowed in pg_proc (thanks Bruce!).
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/builtins.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 3fdfb145e17..7ef81cad741 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.31 1997/12/16 15:55:14 thomas Exp $ + * $Id: builtins.h,v 1.32 1997/12/23 19:55:51 thomas Exp $ * * NOTES * This should normally only be included by fmgr.h. @@ -441,8 +441,8 @@ bool timestamplt(time_t t1, time_t t2); bool timestampgt(time_t t1, time_t t2); bool timestample(time_t t1, time_t t2); bool timestampge(time_t t1, time_t t2); -DateTime *stamp_datetime(time_t timestamp); -time_t datetime_stamp(DateTime *datetime); +DateTime *timestamp_datetime(time_t timestamp); +time_t datetime_timestamp(DateTime *datetime); /* varchar.c */ extern char *bpcharin(char *s, int dummy, int typlen); @@ -507,7 +507,7 @@ extern DateADT date_pli(DateADT dateVal, int32 days); extern DateADT date_mii(DateADT dateVal, int32 days); extern DateTime *date_datetime(DateADT date); extern DateADT datetime_date(DateTime *datetime); -extern DateTime *datet_datetime(DateADT date, TimeADT *time); +extern DateTime *datetime_datetime(DateADT date, TimeADT *time); extern DateADT abstime_date(AbsoluteTime abstime); extern TimeADT *time_in(char *timestr); |