summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
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
2006-01-17Improve comments about btree's use of ScanKey data structures: thereTom Lane
2006-01-16Change the parameter_types column of the pg_prepared_statements to beNeil Conway
2006-01-15Allow the types of parameters to PREPARE to be inferred. If a parameter'sNeil Conway
2006-01-14Some minor code cleanup, falling out from the removal of rtree. SK_NEGATETom Lane
2006-01-14Add selectivity-calculation code for RowCompareExpr nodes. Simplistic,Tom Lane
2006-01-13Remove logic in XactLockTableWait() that attempted to mark a crashedTom Lane
2006-01-13Document that CREATE OPERATOR CLASS amounts to granting public executeTom Lane
2006-01-13Require the issuer of CREATE TYPE to own the functions mentioned in theTom Lane
2006-01-12We neglected to apply domain constraints on UNKNOWN parameters toNeil Conway
2006-01-12mbutils was previously doing some allocations, including invokingNeil Conway
2006-01-12Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane
2006-01-11Create a standard function pg_sleep() to sleep for a specified amount of time.Tom Lane
2006-01-11Cosmetic code cleanup: fix a bunch of places that used "return (expr);"Neil Conway
2006-01-11Remove a confusing pair of parentheses.Neil Conway
2006-01-10Improve error messages for missing-FROM-entry cases, as per recent discussion.Tom Lane
2006-01-10Improve patternsel() by applying the operator itself to each valueTom Lane
2006-01-09Change allow_system_table_mods to PGC_POSTMASTER, restoring previousPeter Eisentraut
2006-01-08Fix the assert_enabled issue properly. This eliminates the former ABITom Lane