summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-11-14In CREATE AGGREGATE, allow the transition datatype to be "internal", but onlyTom Lane
2008-11-14Make CREATE CONVERSION verify that a putative encoding conversion functionTom Lane
2008-11-14Fix oversight in previous error-reporting patch; mustn't pfree path stringHeikki Linnakangas
2008-11-14Actually, instead of whining about how type internal might not safely storeTom Lane
2008-11-14Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera
2008-11-14Implement the basic form of UNNEST, ie unnest(anyarray) returns setofTom Lane
2008-11-14Minor code clarity improvements in array_agg functions, and add a commentTom Lane
2008-11-13Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane
2008-11-13array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut
2008-11-13Removed two non-terminals:Michael Meskes
2008-11-13Arrange to cache the results of looking up a btree predicate proof comparisonTom Lane
2008-11-12In predtest.c, install a limit on the number of branches we will process inTom Lane
2008-11-12Do not use ICONST/SCONST in rules other than Iconst/Sconst.Michael Meskes
2008-11-12array_length() function, and for SQL compatibility also cardinality()Peter Eisentraut
2008-11-12Fix off-by-one error in autovacuum shmem struct sizing. This could lead toHeikki Linnakangas
2008-11-12Clean up the ancient decision to show only two fractional-seconds digitsTom Lane
2008-11-11Ensure that the phrels sets of PlaceHolderVars appearing in an AppendRelInfo'sTom Lane
2008-11-11Get rid of adjust_appendrel_attr_needed(), which has been broken ever sinceTom Lane
2008-11-11Fix sloppy omission of now-required #include's.Tom Lane
2008-11-11Change error messages to print the physical path, likeHeikki Linnakangas
2008-11-11Add an explicit caution about how to use pg_do_encoding_conversion withTom Lane
2008-11-11Add support for input and output of interval values formatted per ISO 8601;Tom Lane
2008-11-10Fix a case of string building.Alvaro Herrera
2008-11-10Fix bugs in sqlchar_to_unicode and unicode_to_sqlchar: both were measuringTom Lane
2008-11-10Fix 'Q' format char parsing in the new to_timestamp() code. Used to crash.Heikki Linnakangas
2008-11-10pg_do_encoding_conversion cannot return NULL (at least not unless the inputTom Lane
2008-11-10Make relhasrules and relhastriggers work like relhasindex, namely we letTom Lane
2008-11-09Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane
2008-11-09Add a startup check that pg_xlog and pg_xlog/archive_status exist.Tom Lane
2008-11-09Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane
2008-11-08Fix recently added code for SQL years-months interval syntax so thatTom Lane
2008-11-07Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane
2008-11-06Improve bulk-insert performance by keeping the current target buffer pinnedTom Lane
2008-11-06The logic in systable_beginscan to translate heap attribute numbers toHeikki Linnakangas
2008-11-05This maneuver really requires a comment ...Tom Lane
2008-11-05change fix for suppress_redundant_updates_trigger() where relation has Oids, ...Andrew Dunstan
2008-11-05fix suppress_redundant_updates_trigger() where relation has Oids, per gripe f...Andrew Dunstan
2008-11-04ADD array_ndims functionPeter Eisentraut
2008-11-04Fix compiler warning about uninitialized variablePeter Eisentraut
2008-11-04Disallow LOCK TABLE outside a transaction block (or function), since this caseTom Lane
2008-11-04Fix compiler warnings (including a seriously bogus elog call); minorTom Lane
2008-11-03Use bool for a boolean flag.Tom Lane
2008-11-03Allow uuid_in() to parse a wider variety of variant input formats for the UUIDPeter Eisentraut
2008-11-03Clean up the messy semantics (not to mention inefficiency) of PageGetTempPageTom Lane
2008-11-03suppress_redundant_updates_trigger function.Andrew Dunstan
2008-11-03Fix silly typo in previous commit.Alvaro Herrera
2008-11-03Fix TransactionIdSetStatusBit so that it doesn't try to change a transactionAlvaro Herrera
2008-11-03Reduce the acceptable staleness of pgstat data for autovacuum, per theAlvaro Herrera
2008-11-03Add pg_typeof() function.Tom Lane
2008-11-03Fix mistakes in comment headersAlvaro Herrera