summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
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
2006-02-07Source code cleanup.Bruce Momjian
2006-02-07I think that NUMERIC datatype has a problem in the performance thatBruce Momjian
2006-02-06Improve the tests to see if ScalarArrayOpExpr is strict. Original codingTom Lane
2006-02-05Improve my initial, rather hacky implementation of joins to appendTom Lane
2006-02-04Fix constraint exclusion to work in inherited UPDATE/DELETE queriesTom Lane
2006-02-04DROP IF EXISTS for ROLE/USER/GROUPAndrew Dunstan
2006-02-04Issue a warning if a change-on-restart-only postgresql.conf value isPeter Eisentraut
2006-02-03Teach planner to convert simple UNION ALL subqueries into append relations,Tom Lane
2006-02-03Update random() usage so ranges are inclusive/exclusive as required.Bruce Momjian
2006-02-03Prevent COPY from using newline or carriage return as delimiter or null.Bruce Momjian
2006-02-01Add code comment about Linux stack randomization and shared memory.Bruce Momjian
2006-02-01Set progname early in the postmaster/postgres binary, rather than doingBruce Momjian
2006-01-31Allow %TYPE to be used with SETOF, per gripe from Murat Tasan.Tom Lane
2006-01-31Restructure planner's handling of inheritance. Rather than processingTom Lane
2006-01-30Fix ALTER COLUMN TYPE bug: it sometimes tried to drop UNIQUE or PRIMARY KEYTom Lane
2006-01-29When building a bitmap scan, must copy the bitmapqualorig expression treeTom Lane
2006-01-29Fix Assert that's no longer correct now that RowCompareExpr is indexable.Tom Lane
2006-01-29Fix code that checks to see if an index can be considered to match the query'sTom Lane
2006-01-26Suppress signed-vs-unsigned-char warning.Tom Lane
2006-01-26Fix display of whole-row Var appearing at the top level of a SELECT list.Tom Lane
2006-01-26Clean up the INET-vs-CIDR situation. Get rid of the internal is_cidr flagTom Lane
2006-01-25Remove the no-longer-useful HashItem/HashItemData level of structure.Tom Lane
2006-01-25Remove the no-longer-useful BTItem/BTItemData level of structure, andTom Lane
2006-01-25Allow row comparisons to be used as indexscan qualifications.Tom Lane
2006-01-25Update regression error message for NUMERIC range overflow. Display "1"Bruce Momjian
2006-01-25Improve error message when NUMERIC precision is exceeded.Bruce Momjian
2006-01-24Fix unportable usage of socklen_t: should use ACCEPT_TYPE_ARG3 macroTom Lane
2006-01-23Instead of using a numberOfRequiredKeys count to distinguish requiredTom Lane
2006-01-23Prototype fix for typo.Bruce Momjian
2006-01-23Use is_cidr in INET/CIDR structure, rather than the generic 'type'.Bruce Momjian
2006-01-22Fix alias-for-target-table-of-UPDATE-or-DELETE patch so that alias canTom Lane
2006-01-22Allow an optional alias for the target table to be specified for UPDATENeil Conway
2006-01-21Repair longstanding bug in slru/clog logic: it is possible for two backendsTom Lane
2006-01-21Add GRANT ON SEQUENCE syntax to support sequence-only permissions.Bruce Momjian
2006-01-20Fix thinko in autovacuum's test to skip temp tables: want to skip anyTom Lane
2006-01-19Add some test scaffolding to allow cache-flush stress testing (and I doTom Lane
2006-01-19Avoid crashing if relcache flush occurs while trying to load data into anTom Lane
2006-01-19It turns out that TablespaceCreateDbspace fails badly if a relcache flushTom Lane
2006-01-19Fix a tiny memory leak (one List header) in RelationCacheInvalidate().Tom Lane
2006-01-18Modify pgstats code to reduce performance penalties from oversized stats dataTom Lane
2006-01-18Add a new system view, pg_cursors, that displays the currently availableNeil Conway
2006-01-17Fix fsync code to test whether F_FULLFSYNC is available, instead ofTom Lane