summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-10-09Improve translatability of error messages for external modules by tweakingAlvaro Herrera
2008-10-09Fix crash in bytea-to-XML mapping when the source value is toasted.Tom Lane
2008-10-09Force a checkpoint in CREATE DATABASE before starting to copy the files,Heikki Linnakangas
2008-10-08Modify the parser's error reporting to include a specific hint for the caseTom Lane
2008-10-07Improve some of the comments in fsmpage.c.Tom Lane
2008-10-07Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane
2008-10-07When a relation is moved to another tablespace, we can't assume that we canHeikki Linnakangas
2008-10-07Improve parser error location for cases where an INSERT or UPDATE commandTom Lane
2008-10-07Fix oversight in recent patch to support multiple read positions inTom Lane
2008-10-06Fix up ruleutils.c for CTE features. The main problem was thatTom Lane
2008-10-06When expanding a whole-row Var into a RowExpr during ResolveNew(), attachTom Lane
2008-10-06Fix GetCTEForRTE() to deal with the possibility that the RTE it's given cameTom Lane
2008-10-06Use fork names instead of numbers in the file names for additionalHeikki Linnakangas
2008-10-06Add columns boot_val and reset_val to the pg_settings view, to exposeMagnus Hagander
2008-10-06Index FSMs needs to be vacuumed as well. Report by Jeff Davis.Heikki Linnakangas
2008-10-06Random speculation about the reason for PPC64 buildfarm failures:Tom Lane
2008-10-06Fix the implicit-RTE code to be able to handle implicit RTEs for CTEs, asTom Lane
2008-10-05Tweak the overflow checks in integer division functions to complain if theTom Lane
2008-10-05Improve behavior of WITH RECURSIVE with an untyped literal in theTom Lane
2008-10-05Fix markTargetListOrigin() to not fail on a simple-Var reference to aTom Lane
2008-10-05Remove obsolete internal functions istrue, isfalse, isnottrue, isnotfalse,Peter Eisentraut
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-10-03Add relation fork support to pg_relation_size() function. You can now passHeikki Linnakangas
2008-10-02Update README.HOT to reflect new snapshot tracking and xmin advancementBruce Momjian
2008-10-02Fix improper display of fractional seconds in interval valuesTom Lane
2008-10-01Improve tuplestore.c to support multiple concurrent read positions.Tom Lane
2008-10-01Suppress an uninitialized-variable warning (not all versions of gccTom Lane
2008-10-01Fix WAL redo of FSM truncation. We can't call smgrtruncate() during WALHeikki Linnakangas
2008-09-30Fix compiler warning (unportable sprintf usage)Tom Lane
2008-09-30Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas
2008-09-28Dept of second thoughts: let's make sure that get_index_stats_hook is onlyTom Lane
2008-09-28Add hooks to let plugins override the planner's lookups in pg_statistic.Tom Lane
2008-09-27Compare escaped chars case insensitively for ILIKE - per gripe from TGL.Andrew Dunstan
2008-09-26Fix pointer-advancement bugs in MS and US cases of new to_timestamp() code.Tom Lane
2008-09-26Make LIKE throw an error if the escape character is at the end of the patternTom Lane
2008-09-25Establish the rule that array types should have the same typdelim as theirTom Lane
2008-09-24Fix integral timestamps so the output is consistent in all cases toBruce Momjian
2008-09-24Fix more problems with rewriter failing to set Query.hasSubLinks when insertingTom Lane
2008-09-23Only show source file and line numbers to superusers, for consistentMagnus Hagander
2008-09-23Add comment about the use of EXEC_BACKEND.Bruce Momjian
2008-09-23Tighten the check in initdb and CREATE DATABASE that the chosen encodingHeikki Linnakangas
2008-09-23Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas
2008-09-21Simplify the definitions of a couple of system views by using SELECT *Tom Lane
2008-09-19Create a selectivity estimation function for the text search @@ operator.Tom Lane
2008-09-19Optimize CleanupTempFiles by having a boolean flag that keeps track of whetherAlvaro Herrera
2008-09-17Allow ShowBufferUsage() to report the number of reads/writes that haveTom Lane
2008-09-16Clean up a couple of weird corner cases in interval parsing: make -yyyy-mm beTom Lane
2008-09-16Fix multiple memory leaks in xml_out(). Per report from Matt Magoffin.Tom Lane
2008-09-15Fix caching of foreign-key-checking queries so that when a replan is needed,Tom Lane
2008-09-15Fix error messages from recent pg_hba parsing patch to use errcontext()Magnus Hagander