summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2007-01-10Change the planner-to-executor API so that the planner tells the executorTom Lane
2007-01-09Have log_temp_files be in kilobytes, remove trace call.Bruce Momjian
2007-01-09Remove trace macro call from new log_temp_files, until it gets moreBruce Momjian
2007-01-09Enable another five tuple status bits by using the high bits of theBruce Momjian
2007-01-09Add GUC log_temp_files to log the use of temporary files.Bruce Momjian
2007-01-09Add a citation to Seltzer and Yigit's Usenix '91 paper about hash tableTom Lane
2007-01-09Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane
2007-01-08Prevent duplicate attribute names in XMLELEMENT.Peter Eisentraut
2007-01-08Tweak joinlist creation to avoid generating useless one-element subproblemsTom Lane
2007-01-08Remove cost_hashjoin's very ancient hack to discourage (once, entirely forbid)Tom Lane
2007-01-07Some fine-tuning of xmlpi in corner cases:Peter Eisentraut
2007-01-07Indent comments in makefiles better so they don't appear in the output.Peter Eisentraut
2007-01-07Allow XML fragment to contain a XML declaration. For that, we need a smallPeter Eisentraut
2007-01-06Apply fix so pow() and exp() ERANGE is used only if result is not 0.Bruce Momjian
2007-01-06Replace xmlroot with a properly functioning version that parses the value,Peter Eisentraut
2007-01-06Fix filtered_base_yylex() to save and restore base_yylval and base_yyllocTom Lane
2007-01-06Check for ERANGE in exp() as well.Bruce Momjian
2007-01-06Improve dpow() check for ERANGE overflow for HPPA.Bruce Momjian
2007-01-06Put back ERANGE test in dpow(). There are platforms that need this,Tom Lane
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2007-01-05Update float dpow() comment about whick platforms had issues with Nan.Bruce Momjian
2007-01-04Fix some small typos in comments. Greg StarkTom Lane
2007-01-04Simplify assignment of Inf for pow Nan (don't worry about the sign).Bruce Momjian
2007-01-04Fix erroneous implementation of -s in postmaster.c (the switch doesn't takeTom Lane
2007-01-03Fix regex_fixed_prefix() to cope reasonably well with regex patterns of theTom Lane
2007-01-03Update pow() tests to check for both errno==EDOM _and_ result==Nan, andBruce Momjian
2007-01-03Fix erroneous error tests in pow/exp.Tom Lane
2007-01-03Clean up smgr.c/md.c APIs as per discussion a couple months ago. Instead ofTom Lane
2007-01-03Attempt to return proper overflow/underflow messages for platforms thatBruce Momjian
2007-01-03For float4/8, remove errno checks for pow() and exp() because only someBruce Momjian
2007-01-03Widen the money type to 64 bits.D'Arcy J.M. Cain
2007-01-02Adjust network errmsg("result is out of range") message to be consistentBruce Momjian
2007-01-02Some platforms set errno on pow(), exp() overflow, some do not, so ifBruce Momjian
2007-01-02finite() no longer used; remove finite() platform-specificBruce Momjian
2007-01-02Add n_live_tuples and n_dead_tuples to pg_stat_all_tables.Bruce Momjian
2007-01-02Add #include <float.h> for platforms that still need it.Bruce Momjian
2007-01-02Fix float4/8 to handle Infinity and Nan consistently, e.g. Infinity is aBruce Momjian
2006-12-31Found the problem with my operator-family changes: by fetching fromTom Lane
2006-12-30Support type modifiers for user-defined types, and pull most knowledgeTom Lane
2006-12-29Fix multiple breakages in last XML patch.Tom Lane
2006-12-29De-escape XML names when reverse-compiling XML expressions.Peter Eisentraut
2006-12-28Fix up btree's initial scankey processing to be able to detect redundantTom Lane
2006-12-28Enable btree_predicate_proof() to make proofs involving cross-data-typeTom Lane
2006-12-28Add send and recv functions for xml type.Peter Eisentraut
2006-12-28Handle content and document options in xmlparse() correctly.Peter Eisentraut
2006-12-27Modify local buffer management to request memory for local buffers in blocksTom Lane
2006-12-27Improve memory management code to avoid inefficient behavior when a contextTom Lane
2006-12-26Fix failure due to accessing an already-freed tuple descriptor in a planTom Lane
2006-12-26Repair bug #2839: the various ExecReScan functions need to resetTom Lane
2006-12-26Repair bug #2836: SPI_execute_plan returned zero if none of the querytreesTom Lane