10da89c1fb
Add sysv4 support to configure and docs.
1997-07-14 16:47:36 +00:00
e3be2f9dd7
Update supported ports for 6.1.1 release.
1997-07-14 16:37:36 +00:00
1fa3b698af
Update new items for 6.1.1
1997-07-14 03:26:22 +00:00
2546b019dc
Update new items in 6.1.1.
1997-07-14 01:54:39 +00:00
7a6d54da36
Update HISTORY file for 6.1.1 release.
1997-07-13 22:51:20 +00:00
39cefa66c9
Updates for 6.1.1.
1997-07-13 20:00:14 +00:00
69e5d63839
AIX nm fix from Gerhard
1997-07-13 19:52:10 +00:00
0fca4afbf4
Change char to int as used in EOF compare, Gerhard
1997-07-12 20:31:47 +00:00
a89f9731e9
Have pg_dumpall return proper status on exit
1997-07-12 15:57:31 +00:00
e66f5c05eb
Remove endian information which is now in port-specific header files.
...
Note that this version is probably identical to two versions ago.
1997-07-11 14:09:00 +00:00
c6df30edb9
Modify port-specific definitions to support missing endian information.
...
Add extra include file for aix to find endian information.
1997-07-11 14:03:01 +00:00
a11ad874e4
Fix for assembler from Yoshihiko ICHIKAWA
1997-07-10 02:32:51 +00:00
3b7ee8f5f9
Allow underscores in user names.
1997-07-10 02:27:27 +00:00
35a952a2ed
Fixes from Jody Winston
1997-07-10 01:15:11 +00:00
a5d80cb0cf
Date-type fixes from Tatsuo Ishii
1997-07-08 22:06:46 +00:00
75ebaa748e
Add information regarding date and time types and functions,
...
including arguments allowed.
1997-07-02 14:13:14 +00:00
54c38a95ee
Add test results for "SET DateStyle" alternative datetime formats.
1997-07-02 01:34:24 +00:00
48b5432769
Include tests for DateStyle output format variations.
1997-07-01 00:34:34 +00:00
3ded6fd511
Fix code to do the right thing with mixed-endian clients and servers.
1997-07-01 00:32:27 +00:00
bf3bcb6a6d
Include definitions for endian info if not in system includes.
1997-07-01 00:31:10 +00:00
7bdf9ba35b
Add flags to allow dynamic loader to find Postgres sharable libraries without
...
having to modify the system-wide library database.
1997-07-01 00:29:40 +00:00
495fdfba98
Rearrange DTK_x constants.
...
Define constants to allow day of week decoding.
Add new datetime and timespan routines.
1997-07-01 00:25:30 +00:00
8507ddb9c6
Use common parser and encoder for timestamp data type.
...
Remove older date and time code (retain NEW_DATE_CODE and NEW_TIME_CODE).
Use common encoder for date and time.
Fix datetime +/- timespan math bug.
1997-07-01 00:22:46 +00:00
43deb7a45f
Fox case-sensitivity for \d and allow trailing ; on backslash commands.
1997-06-29 17:29:28 +00:00
1952f15c5c
Fix memory leak in psql.
1997-06-29 05:06:43 +00:00
eb9c8e0a59
_hash_first: release buf & metabuf if no tuples found for a key.
1997-06-28 05:45:40 +00:00
fc96d50a5c
lextest cleanup.
1997-06-25 22:21:29 +00:00
7e75f5e8b3
Small pg_dumpall cleanup.
1997-06-25 21:24:57 +00:00
b977e15f9f
MANPATH cleanup.
1997-06-25 21:16:24 +00:00
c2010d8e4d
fix for initdb --debug core dump, from Tatsuo Ishii
1997-06-25 21:12:19 +00:00
c666255112
Typo changes in tests/ examples.
1997-06-25 19:59:57 +00:00
c05a7bd972
Test "SET DateStyle TO..." output options.
1997-06-23 15:08:59 +00:00
3267b4b767
Adapt expected output to drop ".00" from datetime seconds field.
...
This is compatible with abstime formats.
1997-06-23 15:07:54 +00:00
89abee4691
Test the "SET DateStyle TO..." date formatting modes.
1997-06-23 15:05:52 +00:00
45409f0cdd
Remove code not previously enabled with USE_NEW_DATE and USE_NEW_TIME
...
#defines.
1997-06-23 15:03:45 +00:00
742425447d
Drop internal routines for formatting time output. Use default formatter.
...
Add timezone info to abstime2tm().
1997-06-23 14:58:51 +00:00
1f4f4534a0
Use the standard date/time encoder rather than strftime() for output.
...
This allows use of the DateStyle session variable.
1997-06-23 14:56:15 +00:00
01264e84ba
Modify EncodeDateTime() to suppress trailing ".00" in seconds field.
...
This matches the behavior of the original formatting for abstime.
Repair datetime + timespan date arithmetic for year boundaries.
From patch submitted by Dave Skinner.
1997-06-23 14:50:56 +00:00
d9bccec0d2
Expunge code not enabled with USE_NEW_DATE and USE_NEW_TIME #defines.
1997-06-23 14:47:26 +00:00
a53d85404e
pg_dump, pg_dumpall cleanups.
1997-06-21 16:08:17 +00:00
374b0009fd
Fix predicted output for month boundary arithmetic problems in
...
datetime +/- timespan. Only manifested when date is at end of month
and time pushes the date into the next month.
1997-06-20 17:20:55 +00:00
2f09dd9958
Fix broken parsing for lists of options. Apparently broken when support was
...
added for keyword=value options.
1997-06-20 17:17:03 +00:00
9af564ada6
Add parser category for "DST" Daylight Savings Time qualifier on time zones.
1997-06-20 17:15:00 +00:00
3cef45d330
Fix leap year and month boundary arithmetic for datetime +/- timespan;
...
the problem only manifests itself when adding years/months and hours
when the hours:minutes:seconds pushes over midnight.
Fix interpretation of times with explicit timezone when the timezone is
in daylight savings time and is not the default timezone.
Allow interpretation of explicit timezone when it is specified as two words:
<standard time> DST". For example, "MET DST" (Middle European Time Daylight
Savings Time). This syntax is found in the zic package on Linux boxes at least.
1997-06-20 17:12:54 +00:00
a75d6aaa41
Check pgdump return request.
1997-06-20 16:37:10 +00:00
dd2c410616
Allow pg_dump to preserve owners of all objects.
1997-06-20 02:20:26 +00:00
0acf9c9b28
Update LInux and Irix FAQs.
REL6_1
1997-06-13 14:08:48 +00:00
41882fde34
setVarAttrLenForCreateTable(): use varnoold/varoattno instead of
...
varno/varattno.
1997-06-13 03:24:26 +00:00
380eaaa139
Add a few words from Vadim and an example on explain output.
...
Update the update date.
1997-06-12 23:45:54 +00:00
0f576413bc
Fix replace_agg_clause() for unary operators.
1997-06-12 17:26:15 +00:00