summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2006-03-04Tighten up SJIS byte sequence check. Now we reject invalid SJIS byteTatsuo Ishii
2006-03-03Make the COPY command return a command tag that includes the number ofTom Lane
2006-03-03Dept. of second thoughts: rejigger the TRUNCATE ... CASCADE patch so thatTom Lane
2006-03-03Fix a typo.Neil Conway
2006-03-03Add CASCADE option to TRUNCATE. Joachim WielandTom Lane
2006-03-03Add comment about localized month names for to_date and to_timestamp.Bruce Momjian
2006-03-03Arrange to call AbsorbFsyncRequests every so often while performing aTom Lane
2006-03-02Repair oidvectorrecv and int2vectorrecv, which I broke while changingTom Lane
2006-03-01Attached is a patch that replaces a bunch of places where StringInfosNeil Conway
2006-03-01This patch makes the error message strings throughout the backendNeil Conway
2006-02-28Allow the syntax CREATE TYPE foo, with no parameters, to permit explicitTom Lane
2006-02-28Teach nodeSort and nodeMaterial to optimize out unnecessary overheadTom Lane
2006-02-28Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane
2006-02-27Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, inPeter Eisentraut
2006-02-27Add mention that tid perhaps someday should be output as a record.Bruce Momjian
2006-02-26Improve sorting speed by pre-extracting the first sort-key column ofTom Lane
2006-02-26Implement the <> operator for the tid type. Original patch from MarkNeil Conway
2006-02-26Fix typo in comment.Neil Conway
2006-02-24The Makefile was invoking perl scripts as ./script.pl. This fails whenPeter Eisentraut
2006-02-21Cleanup the usage of ScanDirection: use the symbolic names for theNeil Conway
2006-02-19Update obsolete comment.Tom Lane
2006-02-19Modify logtape.c so that the initial LogicalTapeSetCreate call onlyTom Lane
2006-02-19Improve tuplesort.c to support variable merge order. The original codingTom Lane
2006-02-19Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway
2006-02-18Add support for Windows codepages 1253, 1254, 1255, and 1257 and cleanPeter Eisentraut
2006-02-18Mark unescape_single_char() "static": as far as I can see this functionNeil Conway
2006-02-17Fix typo in comment.Neil Conway
2006-02-14Move btbulkdelete's vacuum_delay_point() call to a place in the loop whereTom Lane
2006-02-14Add some missing vacuum_delay_point calls in GIST vacuuming.Tom Lane
2006-02-14AllocSetStats should probably be using unsigned format to show space totals.Tom Lane
2006-02-13Fix qual_is_pushdown_safe to not try to push down quals involving a whole-rowTom Lane
2006-02-12Revert because C locale uses "" for thousands_sep, meaning "n/a", whileBruce Momjian
2006-02-12Fix bug that allowed any logged-in user to SET ROLE to any other database userTom Lane
2006-02-12Throw a warning rather than an error on invalid character from UTF8 toBruce Momjian
2006-02-12Support "" for thousands separator and plus sign in to_char(), perBruce Momjian
2006-02-12Revert patch becaues of locking concerns:Bruce Momjian
2006-02-12Allow to_char() to print localized month and day names.Bruce Momjian
2006-02-12Add contrib/pg_freespacemap to display free space map information.Bruce Momjian
2006-02-12I've created a new shared catalog table pg_shdescription to storeBruce Momjian
2006-02-12Actually there's a better way to do this, which is to count tuplesTom Lane
2006-02-11Skip ambulkdelete scan if there's nothing to delete and the index is notTom Lane
2006-02-11Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAMEBruce Momjian
2006-02-11Fix incorrect addition, subtraction, and overflow checking in newTom Lane
2006-02-11Revert based on Tom's recommendation:Bruce Momjian
2006-02-11Allow VACUUM to complete faster by avoiding scanning the indexes when noBruce Momjian
2006-02-11Add INET/CIDR operators: and, or, not, plus int8, minus int8, and inetBruce Momjian
2006-02-10Check that SID is enabled while checking for Windows admin privileges.Tom Lane
2006-02-10Change search for default operator classes so that it examines all opclassesTom Lane
2006-02-10Allow psql multi-line column values to align in the proper columnsBruce Momjian
2006-02-09Reject out-of-range dates in date_in().Tom Lane