summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1999-04-15Fix boolean assignment of return values to use "FALSE" rather than theThomas G. Lockhart
mis-copied "NULL", which happens to have the same binary value. Previously, gcc gave non-fatal warnings.
1999-04-15Code modified to reject out of range day of month.Thomas G. Lockhart
Previously, dates falling within Unix system time range were run through a call to localtime() to get the time zone, if it was not specified. This had the effect that dates with DOMs which were larger than would be valid for that month were "rotated" into the following months.
1999-04-15Fix error message to match that returned by new regression test referenceThomas G. Lockhart
machine (linux-2.0.36 RH5.2 with RH5.2 patches).
1999-04-15Correct documentation of CREATE OPERATOR.Tom Lane
1999-04-14Correct psql's online help for CREATE OPERATOR, which didTom Lane
not match what the backend actually accepts.
1999-04-14pg_dump was trying to use an incorrect (or, perhaps, only obsolete?)Tom Lane
syntax for CREATE OPERATOR with SORT parameters. Fixed. It is now actually possible to dump and reload a database containing fully specified user-definable operators ...
1999-04-14*** empty log message ***Michael Meskes
1999-04-14use new config.guess output for system specific expected files ..Marc G. Fournier
1999-04-14use config.guess instead of uname -s to figure out system, so that we canMarc G. Fournier
include platform spcific changes ... thanks to Mark Hollomon <mhh@nortelnetworks.com> for the awk script used
1999-04-13Fix adding columns to a temp table.Bruce Momjian
1999-04-13Add ARM32 support by Andrew McMurryBruce Momjian
1999-04-13array_in is defined in the system catalog as taking two arguments while itBruce Momjian
actually takes three. Please apply the following patch. Massimo
1999-04-13There are some bugs about backward scanning usingBruce Momjian
indexes. 1. Index Scan using plural indexids never scan backward as to the order of indexids. 2. The cursor using Index scan is not usable after moving past the end. This patch solves above bugs. Moreover the change of _bt_first() would be useful to extend ORDER BY patch by Jan Wieck for all descending order cases. Hiroshi Inoue
1999-04-13*** empty log message ***Michael Meskes
1999-04-13Add -E optionTatsuo Ishii
1999-04-13Document updation for 6.5Tatsuo Ishii
1999-04-12Fix HEAP_MOVED_IN handling in HeapTupleSatisfiesDirty().Vadim B. Mikheev
1999-04-12Some comments...Vadim B. Mikheev
1999-04-12Unique btree-s:Vadim B. Mikheev
/* * Have to check is inserted heap tuple deleted one * (i.e. just moved to another place by vacuum)! */
1999-04-12add mipsel-unknown-linux-gnu support. config.guess seems slightly changedTatsuo Ishii
since April 1?
1999-04-11Implement UpdateCountPeter Mount
1999-04-11Repair problems seen when CREATE OPERATOR mentions aTom Lane
not-yet-defined operator in commutator, negator, etc links. This is necessary in order to ensure that a pg_dump dump of user-defined operators can be reloaded. There may still be a bug lurking here, because it's provoking a 'Buffer Leak' notice message in one case. See my mail to pgsql-hackers.
1999-04-10Fix another batch of bogosities in pg_operator table.Tom Lane
These were bogus selectivity-estimator links, like a '>' operator pointing to intltsel when it should use intgtsel.
1999-04-10Tweak create_operator regress test so it doesn't illustrateTom Lane
incorrect usage of commutator link.
1999-04-10vacuumlo deals with large objects not referenced by any tables and removes them.Peter Mount
1999-04-09Fix CREATE OPERATOR ... LANGUAGE 'internal', which I broke whileTom Lane
making prosrc instead of proname be the link to the actual internal function.
1999-04-08Add section from Tom Lane on hashjoin characteristics of operators.Thomas G. Lockhart
Add emacs editor hints to bottom of file.
1999-04-08Add emacs editor hints to bottom of file.Thomas G. Lockhart
1999-04-07Fix some more hashjoin-related bugs in pg_operator. FixTom Lane
hashjoin's hashFunc() so that it does the right thing with pass-by-value data types (the old code would always return 0 for int2 or char values, which would work but would slow things down a lot). Extend opr_sanity regress test to catch more kinds of errors.
1999-04-07Prepare multi-byte support document for 6.5Tatsuo Ishii
1999-04-07Unmark 'hashable' operators that can't really be used forTom Lane
hashjoins. Extend opr_sanity regress test to help detect similar mistakes.
1999-04-06Fix markup to include all closing tags.Thomas G. Lockhart
Required by newest versions of DocBook and style sheets.
1999-04-06Start indenting markup. No text changes.Thomas G. Lockhart
1999-04-06Fix XREF markup and typo.Thomas G. Lockhart
1999-04-06Version string was truncating the last character.Thomas G. Lockhart
Use memcpy() rather than StrNCpy() which had forced a string termination character at the end.
1999-04-06On reflection, filesize limit ought to be an exact powerTom Lane
of 2 to save a few cycles in md.c. So, make it 2^30 not 10^9.
1999-04-05Reduce default file size limit to 1Gb, and move theTom Lane
configuration constant to config.h.
1999-04-05Fix HEAP_MOVED_OFF handling in HeapTupleSatisfiesDirtyVadim B. Mikheev
(may be used while vacuuming unique btree-s).
1999-04-05Fix potential overflow problems when relation size exceedsTom Lane
2gig. Fix failure to reliably put the smaller relation on the inside of a hashjoin.
1999-04-04We use CFLAGS = -O2 on every other gcc platform, so why notTom Lane
hpux_gcc too?
1999-04-04Use MAXALIGN value found by configure instead of aTom Lane
hardwired assumption.
1999-04-03Give a better error message if an SQL-language function isTom Lane
called through fmgr. Someday we should try to actually execute the function, but that looks like it might be a major feature addition. Not something to try during beta phase.
1999-04-03Fix bogus pg_amop entries for int8 hash, cidr btree,Tom Lane
polygon rtree, circle rtree indexes.
1999-04-03Fix nasty bug in optimization of multiway joins: optimizerTom Lane
would sometimes generate a plan that omitted a sort step before merge.
1999-04-02Repair problems with omitted password and VALID UNTILTom Lane
parameters in CREATE USER.
1999-04-02Remove overly presumptuous use of __STDC__ in c.h, replacingTom Lane
it with configure-script tests to see whether const, inline, volatile, etc work or not. (Curiously, configure was already doing the work to see if const and inline were OK, but the results were not getting plugged into config.h :-(.)
1999-04-02Clean up compile errors and warnings, cf Billy Allie'sTom Lane
complaints (and some of my own).
1999-04-02Update config.guess and config.sub to versions fromTom Lane
autoconf 2.13.
1999-03-30Fix up small markup problems. Force omit-tags to nil so we have tagThomas G. Lockhart
completion as required by the newest DocBook conventions.
1999-03-30Repair cut-and-paste typo which described createdb rather than destroydb.Thomas G. Lockhart