]> granicus.if.org Git - postgresql/history - src/backend
Tweak trace_sort code to show the merge order (number of active input
[postgresql] / src / backend /
2006-03-08 Tom LaneTweak trace_sort code to show the merge order (number...
2006-03-07 Tom LaneFurther examination of ltsReleaseBlock usage shows...
2006-03-07 Tom LaneRepair old performance bug in tuplesort.c/logtape.c...
2006-03-07 Tom LaneTurn off zero_damaged_pages in the right place (ie...
2006-03-07 Bruce MomjianUse SetConfigOption() to turn off "zero_damaged_pages...
2006-03-07 Bruce MomjianProperly set "escape_string_warning" to default to...
2006-03-07 Tom LaneMake all our flex and bison files use %option prefix...
2006-03-07 Tom LaneRemove the stub support we had for UNION JOIN; per...
2006-03-06 Bruce MomjianDefault to ON for 8.2, as announced in the release...
2006-03-06 Bruce MomjianAttached is the new patch. To summarize:
2006-03-06 Bruce MomjianEnable standard_conforming_strings to be turned on.
2006-03-06 Bruce MomjianThis patch adds native LDAP auth, for those platforms...
2006-03-06 Bruce MomjianPrevent autovacuum from zeroing damaged pages.
2006-03-05 Neil ConwayPer recent discussion on -hackers, we should sometimes...
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2006-03-04 Tom LaneSupport include directives in postgresql.conf.
2006-03-04 Tom LaneDeclare the arguments of AllocateFile() as const char...
2006-03-04 Tom LaneIncorporate a couple of recent tuplesort.c improvements...
2006-03-04 Tom LanePrevent lazy_space_alloc from making requests that...
2006-03-04 Tom LanePrevent sorting from requesting a SortTuple array that...
2006-03-04 Tatsuo IshiiTighten up SJIS byte sequence check. Now we reject...
2006-03-03 Tom LaneMake the COPY command return a command tag that include...
2006-03-03 Tom LaneDept. of second thoughts: rejigger the TRUNCATE .....
2006-03-03 Neil ConwayFix a typo.
2006-03-03 Tom LaneAdd CASCADE option to TRUNCATE. Joachim Wieland
2006-03-03 Bruce MomjianAdd comment about localized month names for to_date...
2006-03-03 Tom LaneArrange to call AbsorbFsyncRequests every so often...
2006-03-02 Tom LaneRepair oidvectorrecv and int2vectorrecv, which I broke...
2006-03-01 Neil ConwayAttached is a patch that replaces a bunch of places...
2006-03-01 Neil ConwayThis patch makes the error message strings throughout...
2006-02-28 Tom LaneAllow the syntax CREATE TYPE foo, with no parameters...
2006-02-28 Tom LaneTeach nodeSort and nodeMaterial to optimize out unneces...
2006-02-28 Tom LaneExtend the ExecInitNode API so that plan nodes receive...
2006-02-27 Peter EisentrautClean up CREATE FUNCTION syntax usage in contrib and...
2006-02-27 Bruce MomjianAdd mention that tid perhaps someday should be output...
2006-02-26 Tom LaneImprove sorting speed by pre-extracting the first sort...
2006-02-26 Neil ConwayImplement the <> operator for the tid type. Original...
2006-02-26 Neil ConwayFix typo in comment.
2006-02-24 Peter EisentrautThe Makefile was invoking perl scripts as ./script...
2006-02-21 Neil ConwayCleanup the usage of ScanDirection: use the symbolic...
2006-02-19 Tom LaneUpdate obsolete comment.
2006-02-19 Tom LaneModify logtape.c so that the initial LogicalTapeSetCrea...
2006-02-19 Tom LaneImprove tuplesort.c to support variable merge order...
2006-02-19 Neil ConwayAdd TABLESPACE and ON COMMIT clauses to CREATE TABLE...
2006-02-18 Peter EisentrautAdd support for Windows codepages 1253, 1254, 1255...
2006-02-18 Neil ConwayMark unescape_single_char() "static": as far as I can...
2006-02-17 Neil ConwayFix typo in comment.
2006-02-14 Tom LaneMove btbulkdelete's vacuum_delay_point() call to a...
2006-02-14 Tom LaneAdd some missing vacuum_delay_point calls in GIST vacuu...
2006-02-14 Tom LaneAllocSetStats should probably be using unsigned format...
2006-02-13 Tom LaneFix qual_is_pushdown_safe to not try to push down quals...
2006-02-12 Bruce MomjianRevert because C locale uses "" for thousands_sep,...
2006-02-12 Tom LaneFix bug that allowed any logged-in user to SET ROLE...
2006-02-12 Bruce MomjianThrow a warning rather than an error on invalid charact...
2006-02-12 Bruce MomjianSupport "" for thousands separator and plus sign in...
2006-02-12 Bruce MomjianRevert patch becaues of locking concerns:
2006-02-12 Bruce MomjianAllow to_char() to print localized month and day names.
2006-02-12 Bruce MomjianAdd contrib/pg_freespacemap to display free space map...
2006-02-12 Bruce MomjianI've created a new shared catalog table pg_shdescriptio...
2006-02-12 Tom LaneActually there's a better way to do this, which is...
2006-02-11 Tom LaneSkip ambulkdelete scan if there's nothing to delete...
2006-02-11 Bruce MomjianAllow ALTER TABLE ... ALTER CONSTRAINT ... RENAME
2006-02-11 Tom LaneFix incorrect addition, subtraction, and overflow check...
2006-02-11 Bruce MomjianRevert based on Tom's recommendation:
2006-02-11 Bruce MomjianAllow VACUUM to complete faster by avoiding scanning...
2006-02-11 Bruce MomjianAdd INET/CIDR operators: and, or, not, plus int8, minus...
2006-02-10 Tom LaneCheck that SID is enabled while checking for Windows...
2006-02-10 Tom LaneChange search for default operator classes so that...
2006-02-10 Bruce MomjianAllow psql multi-line column values to align in the...
2006-02-09 Tom LaneReject out-of-range dates in date_in().
2006-02-07 Bruce MomjianSource code cleanup.
2006-02-07 Bruce MomjianI think that NUMERIC datatype has a problem in the...
2006-02-06 Tom LaneImprove the tests to see if ScalarArrayOpExpr is strict...
2006-02-05 Tom LaneImprove my initial, rather hacky implementation of...
2006-02-04 Tom LaneFix constraint exclusion to work in inherited UPDATE...
2006-02-04 Andrew DunstanDROP IF EXISTS for ROLE/USER/GROUP
2006-02-04 Peter EisentrautIssue a warning if a change-on-restart-only postgresql...
2006-02-03 Tom LaneTeach planner to convert simple UNION ALL subqueries...
2006-02-03 Bruce MomjianUpdate random() usage so ranges are inclusive/exclusive...
2006-02-03 Bruce MomjianPrevent COPY from using newline or carriage return...
2006-02-01 Bruce MomjianAdd code comment about Linux stack randomization and...
2006-02-01 Bruce MomjianSet progname early in the postmaster/postgres binary...
2006-01-31 Tom LaneAllow %TYPE to be used with SETOF, per gripe from Murat...
2006-01-31 Tom LaneRestructure planner's handling of inheritance. Rather...
2006-01-30 Tom LaneFix ALTER COLUMN TYPE bug: it sometimes tried to drop...
2006-01-29 Tom LaneWhen building a bitmap scan, must copy the bitmapqualor...
2006-01-29 Tom LaneFix Assert that's no longer correct now that RowCompare...
2006-01-29 Tom LaneFix code that checks to see if an index can be consider...
2006-01-26 Tom LaneSuppress signed-vs-unsigned-char warning.
2006-01-26 Tom LaneFix display of whole-row Var appearing at the top level...
2006-01-26 Tom LaneClean up the INET-vs-CIDR situation. Get rid of the...
2006-01-25 Tom LaneRemove the no-longer-useful HashItem/HashItemData level...
2006-01-25 Tom LaneRemove the no-longer-useful BTItem/BTItemData level...
2006-01-25 Tom LaneAllow row comparisons to be used as indexscan qualifica...
2006-01-25 Bruce MomjianUpdate regression error message for NUMERIC range overf...
2006-01-25 Bruce MomjianImprove error message when NUMERIC precision is exceeded.
2006-01-24 Tom LaneFix unportable usage of socklen_t: should use ACCEPT_TY...
2006-01-23 Tom LaneInstead of using a numberOfRequiredKeys count to distin...
2006-01-23 Bruce MomjianPrototype fix for typo.
2006-01-23 Bruce MomjianUse is_cidr in INET/CIDR structure, rather than the...
next