Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-10-06 | Back-patch nodeMaterial to honor chgParam by recomputing its output. | Tom Lane | |
2000-10-04 | avoid database-wide restart on write error | Hiroshi Inoue | |
2000-09-30 | Back-patch fix for TRUNCATE failure on relations with indexes. | Tom Lane | |
2000-09-25 | Back-patch fix to grab read lock on a buffer while it is written out. | Tom Lane | |
2000-09-23 | Back-patch code to deduce implied equalities from transitivity of | Tom Lane | |
mergejoin clauses, and add these equalities to the given WHERE clauses. This is necessary to ensure that sort keys we think are equivalent really are equivalent as soon as their rels have been joined. Without this, 7.0 may create an incorrect mergejoin plan. | |||
2000-09-23 | Back-patch fix for subselect in targetlist of Append node. | Tom Lane | |
2000-09-23 | Back-patch fix to make pg_dump dump 'iscachable' flag for functions. | Tom Lane | |
2000-09-23 | Back-patch fix that allows AllocateFile() to return errno=ENFILE/EMFILE | Tom Lane | |
after we are no longer able to close any more VFDs. This is needed to avoid postmaster crash under out-of-file-descriptors conditions. | |||
2000-09-23 | Back-patch fix for '.' not in PATH at build time, per SL Baur. | Tom Lane | |
2000-09-23 | Back-patch fix to include kernel errno message in all smgr elog messages. | Tom Lane | |
2000-09-23 | Back-patch fix for 'Sorcerer's Apprentice' syndrome wherein md.c would | Tom Lane | |
create a vast quantity of zero-length files if asked to access a block number far beyond the actual end of a relation. | |||
2000-09-23 | Back-patch fix for erroneous use of strcmp(). | Tom Lane | |
2000-09-23 | Back-patch fix for erroneous selectivity of not-equals. | Tom Lane | |
2000-09-23 | Apply Jeroen van Vianen's patch for failure to check heap_openr failure | Tom Lane | |
in RI triggers. This is fixed in another way in current sources, but might as well apply this patch to REL7_0 branch so that 7.0.3 need not suffer this crash. | |||
2000-09-23 | Back-patch fix to copy sub-Query nodes before planning them. This | Tom Lane | |
fixes problems with subselects appearing in contexts like COALESCE or BETWEEN, where parser will make multiple links to same subexpression. | |||
2000-09-23 | Back-patch fix to remove bogus use of int4out(). | Tom Lane | |
2000-09-23 | Back-patch fix for erroneous free() of getpwuid() result. | Tom Lane | |
2000-09-20 | Cancel request while waiting for a lock should try to wake | Hiroshi Inoue | |
up sleeping processes. | |||
2000-09-19 | Back-patch fix to ensure that VACUUM always calls FlushRelationBuffers. | Tom Lane | |
2000-09-15 | Allow PL/pgSQL accept non ascii identifiers | Tatsuo Ishii | |
2000-09-08 | Back-patch fix for bogus plans involving non-mark/restorable plan | Tom Lane | |
as inner plan of a mergejoin. | |||
2000-09-07 | Fix psql crash. If MULTIBYTE is enabled, \l+ dumps core due to | Tatsuo Ishii | |
SQL buffer in listAllDbs is just too small. | |||
2000-08-30 | Back-patch fix to ensure we abort any open transaction at backend exit. | Tom Lane | |
2000-08-28 | oops, in v7.x its USE_SYSLOG, not ENABLE_SYSLOG | Marc G. Fournier | |
modify config.h.in so that it gets set by configure properly | |||
2000-08-28 | backpatch the --enable-syslog functionality to REL7_0 branch | Marc G. Fournier | |
2000-07-27 | Back-patch primary fix for planner recursion bug. | Tom Lane | |
2000-07-26 | SELECT ... FOR UPDATE neglects duplicate key checking. | Tatsuo Ishii | |
patches submitted by Hiroshi Inoue. | |||
2000-07-13 | Backpatch backwards-index-scan fix. | Tom Lane | |
2000-07-07 | Back-patch StrNCpy fix. | Tom Lane | |
2000-06-28 | Back-patch COPY WITH OIDS leak fix. | Tom Lane | |
2000-06-15 | Back-patch large-object fix. | Tom Lane | |
2000-06-15 | Backpatch jdbc fixes into 7.0.X. | Bruce Momjian | |
2000-06-12 | Brand 7.1 release. Also update jdbc version in release branch. | Bruce Momjian | |
2000-06-06 | Backpatch SearchSysCacheTupleCopy fix for init_fcache. | Tom Lane | |
2000-06-06 | Back-patch typeTypeName() fix into REL7_0. | Tom Lane | |
2000-06-05 | Fix error message wording | Bruce Momjian | |
2000-06-05 | Update for 7.0.2. | Bruce Momjian | |
2000-06-01 | Lexer defended us against overlength plain identifiers, but not against | Tom Lane | |
overlength quoted identifiers. Death and destruction ensue... | |||
2000-06-01 | Fixups for 7.0.1 | Bruce Momjian | |
2000-05-31 | Back-patch fix to recognize clause pairs involving Params | Tom Lane | |
as being range queries. | |||
2000-05-30 | Update pg_hba.conf with more examples | Bruce Momjian | |
2000-05-30 | Update pg_hba.conf.sample with better examples and descriptions | Bruce Momjian | |
2000-05-30 | Copy pg_ident.conf.sample into /lib directory. Rename USERAUTH to | Bruce Momjian | |
AUTHTYPE in config file. Patch both branches. | |||
2000-05-29 | Back-patch tz name length fixes into REL7_0. | Tom Lane | |
2000-05-28 | array_map() needs to guard against a NULL input array. This problem | Tom Lane | |
should go away in 7.1 with the new fmgr, but for 7.0.1 ... | |||
2000-05-28 | fastpath neglected to pass a valid isNull flag to the function being | Tom Lane | |
called. We hadn't noticed this because C-coded functions mostly don't pay attention to isNull anyway ... but plpgsql functions sure do ... This is fixed in another way for 7.1, but 7.0.1 needs this patch. | |||
2000-05-28 | Make EUC_CN support more robust. | Tatsuo Ishii | |
2000-05-27 | Add README.kerbros | Bruce Momjian | |
2000-05-27 | Improve pg_hba.conf examples | Bruce Momjian | |
2000-05-26 | Reduce eqsel()'s fudge-factor for estimating the frequency of values | Tom Lane | |
other than the most common value in a column. We had had 0.5, make it 0.1 to make it more likely that an indexscan will be chosen. Really need better statistics instead, but this should stem the bleeding meanwhile ... |