summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-06-23Use the standard date/time encoder rather than strftime() for output.Thomas G. Lockhart
This allows use of the DateStyle session variable.
1997-06-23Modify EncodeDateTime() to suppress trailing ".00" in seconds field.Thomas G. Lockhart
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-23Expunge code not enabled with USE_NEW_DATE and USE_NEW_TIME #defines.Thomas G. Lockhart
1997-06-21pg_dump, pg_dumpall cleanups.Bruce Momjian
1997-06-20Fix predicted output for month boundary arithmetic problems inThomas G. Lockhart
datetime +/- timespan. Only manifested when date is at end of month and time pushes the date into the next month.
1997-06-20Fix broken parsing for lists of options. Apparently broken when support wasThomas G. Lockhart
added for keyword=value options.
1997-06-20Add parser category for "DST" Daylight Savings Time qualifier on time zones.Thomas G. Lockhart
1997-06-20Fix leap year and month boundary arithmetic for datetime +/- timespan;Thomas G. Lockhart
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-20Check pgdump return request.Bruce Momjian
1997-06-20Allow pg_dump to preserve owners of all objects.Bruce Momjian
1997-06-13setVarAttrLenForCreateTable(): use varnoold/varoattno instead ofVadim B. Mikheev
varno/varattno.
1997-06-12Add a few words from Vadim and an example on explain output.Thomas G. Lockhart
Update the update date.
1997-06-12Fix replace_agg_clause() for unary operators.Vadim B. Mikheev
1997-06-12Update psql EXPLAIN help description, from Thomas.Bruce Momjian
1997-06-12Someone forgot about aligning in fastgetiattr()...Vadim B. Mikheev
1997-06-12Datum *idatum;Vadim B. Mikheev
^
1997-06-11Compare 'char' and 'text' lexicographically.Vadim B. Mikheev
1997-06-11Lexicographically compare 'char' and 'text'.Vadim B. Mikheev
1997-06-11geqo_rel_paths(): compute_joinrel_size() shouldn't be calledVadim B. Mikheev
for non-JoinPath path! So now we have: if ( IsA_JoinPath (cheapest) ) rel->size = compute_joinrel_size(cheapest);
1997-06-11From: Darren King <aixssd!darrenk@abs.net>Marc G. Fournier
Subject: [PORTS] Makefile.aix patch. Have to add libc.a to the link when making a shared lib.
1997-06-11From: Robert Bruccoleri <bruc@bms.com>Marc G. Fournier
Subject: [PORTS] Patches for Irix 6.4 I have worked out how to compile PostgreSQL on Irix 6.4 using the -n32 compiler mode and version 7.1 of the C compiler. (The n32 compiler use 32 bits addressing, but allows access to all the instructions in the MIPS4 instruction set.) There were several problems: 1) The ld command is not referenced as a macro in all the Makefiles. On this platform, you have to include -n32 on all the ld commands. Makefiles were changed as needed. 3) Lots of warnings are generated from the compiler. Since the regression tests worked OK, I didn't attempt to fix them. If anyone wants the compilation log, please let me know, and I'll email it to you. The version of postgresql was 970602. Here is Makefile.custom: CUSTOM_COPT = -O2 -n32 MK_NO_LORDER = 1 LD = ld -n32 CC += -n32
1997-06-11From: "Brian E. Gallew" <geek+@cmu.edu>Marc G. Fournier
Subject: Re: [PORTS] Re: [PATCHES] DG/UX 5.4R11 patches Comments in boot.sed break DG/UX port
1997-06-11From: Igor <igor@sba.miami.edu>Marc G. Fournier
Subject: [PATCHES] sequences display in psql Well, I am away at Progress training (not Postgres!!) and desided to do this patch during a break. This will allow listing of sequences in addition to listing of tables and indicies: \d would should indicies, tables, and sequences \ds would show sequences only.
1997-06-11From: "Eric H. Raskin" <ehr@listworks.com>Marc G. Fournier
Subject: [PATCHES] DG/UX 5.4R11 patches 1) config.guess -- it doesn't understand that the new default "TARGET_BINARY_INTERFACE" (m88kdgux) is now an ELF format, not BCS.
1997-06-10LO patches for loimport/loexport from Raymond ToyBruce Momjian
1997-06-10 if ( rel->size <= 0 )Vadim B. Mikheev
rel->size = compute_rel_size(rel);
1997-06-10 if ( new_rel->size <= 0 )Vadim B. Mikheev
new_rel->size = compute_rel_size(new_rel);
1997-06-10Duplicates handling...Vadim B. Mikheev
1997-06-07Cleanup on xinv# table names.Bruce Momjian
1997-06-07Make LO patter consistent with psql.Bruce Momjian
1997-06-07avoid xinv* table name conflict with large objects.Bruce Momjian
1997-06-06From: Igor <igor@sba.miami.edu>Marc G. Fournier
Subject: [PATCHES] destroydb.1 patch This is a patch to destroydb man page so that it shows and explains "-i" option.
1997-06-06From: Darren King <aixssd!darrenk@abs.net>Marc G. Fournier
Subject: [PATCHES] psql and large objects fix Psql was broken by using "Inv[0-9]+" instead of "xin[xv][0-9]+" to not show large object files. Been this way for a long time too. Relic of an older naming convention, perhaps?
1997-06-06From: "D'Arcy J.M. Cain" <darcy@druid.net>Marc G. Fournier
Subject: [PATCHES] backend/storage/ipc/shmem.c - strname is only used if assert checking is on
1997-06-06From: "D'Arcy J.M. Cain" <darcy@druid.net>Marc G. Fournier
Subject: [PATCHES] backend/lib/fstack.c - The FixedStackIsValid so obviously needs to be a macro - FixedStackContains only called if assert checking on
1997-06-06Change one date away from PST to avoid trouble after daylight savings time.Thomas G. Lockhart
1997-06-06Change one date away from PST to avoid trouble after daylight savings time.Thomas G. Lockhart
1997-06-06lowercase large object table name fix.Bruce Momjian
1997-06-06gimme_tree(): got rid of compute_rel_size() -Vadim B. Mikheev
compute_joinrel_size already called by geqo_rel_paths.
1997-06-06Added check is new item successfuly inserted to a page or not.Vadim B. Mikheev
1997-06-06From: Igor <igor@sba.miami.edu>Marc G. Fournier
Subject: [PATCHES] More psql and libpq patches Well..these would be the last patches until the release (I hope)... I ran the regression tests while watching psql under purify, and it did not leak even one byte. In this patch: * Plugged a major leak when PSQL reads files for input (either through \i options or through -f option) * Fixed the one remaining leak in PSQL in not clearing PGresult *results everywhere it is supposed to. (Thanks Tymm) * Fixed A small leak in PSQL not clearing all the PGsettings correctly. * A not-so-obvious (but small) leak in Libpq when PQsetdb fails for any reason. * Added \n to some Libpq error messages to make them easier to digest.. * Finally, added /* PURIFY */ comment to some of the code indicating the reason for why it was added/changed...for future developers.
1997-06-06From: "Brian E. Gallew" <geek+@cmu.edu>Marc G. Fournier
Define USE_POSIX_TIME for dgux port
1997-06-06From: Phil Nelson <phil@cs.wwu.edu>Marc G. Fournier
Subject: [PATCHES] Patches to allow generic NetBSD support
1997-06-06From: Phil Nelson <phil@cs.wwu.edu>Marc G. Fournier
Subject: [PATCHES] Added support for NetBSD/pc532.
1997-06-06From: PortSite <info@portsite.nl>Marc G. Fournier
The GNUmakefile in src/test/regress uses `gmake' for the make program. This should be $(MAKE)
1997-06-06From: "D'Arcy J.M. Cain" <darcy@druid.net>Marc G. Fournier
Subject: [HACKERS] src.original/./backend/lib/fstack.c Another change I suggested. I bracket an unused function and add a return to quiet the compiler. In addition I added an internal consistency check.
1997-06-06From: "D'Arcy J.M. Cain" <darcy@druid.net>Marc G. Fournier
Subject: [HACKERS] backend/optimizer/geqo/geqo_erx.c I sent these changes in with a bunch of others. Some were folded in but others, like these, were not. I am not sure why so I am resending this to the developers list by itself for discussion. The readon why I suggest these changes is that the compiler can't tell that minimum_count is initialized before it is used. The tests that I add in here will cause an immediate error if it doesn't. As the comments below suggest, if it is 100% guaranteed that the variable will always be initialized then how this is so should be commented here. I don't know how much strain the actual test puts on the performance but if it isn't too much then maybe leave it in for absolute safety anyway. There are also a few returns just to stop warnings.
1997-06-05Fix for large objects and case sensitivity, from Raymond Toy.Bruce Momjian
1997-06-05bsdi configure detection fix.Bruce Momjian
1997-06-05allpaths.c:find_join_paths(): compute_rel_size() shouldn't be calledVadim B. Mikheev
for join-relations. Sizes already computed by prune_rel_paths():compute_joinrel_size(). joinrels.c: < if ( _use_right_sided_plans_ ) --- > if ( _use_right_sided_plans_ && > length (outer_rel->relids) > 1 ) - r_plans are useful when outer_rel is join-relation... It decreases the size of search space...