summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2005-06-10Quick hack to allow the outer query's tuple_fraction to be passed downTom Lane
2005-06-10If a LIMIT is applied to a UNION ALL query, plan each UNION arm asTom Lane
2005-06-10Revise searching of subplan target lists to use something more efficientTom Lane
2005-06-09Free buffer allocated via malloc (process is short-lived, but fix it anyway).Bruce Momjian
2005-06-09Mention prefix %t has no milliseconds.Bruce Momjian
2005-06-09Restructure log_line_prefix options to be clearer:Bruce Momjian
2005-06-09This patch against 8.0.0beta1 source adds log_line_prefix options forBruce Momjian
2005-06-09Fix typo in comment, per Alvaro.Tom Lane
2005-06-09Fix assign_datestyle() so that it doesn't misleadingly complain aboutTom Lane
2005-06-09Make SPI set SPI_processed for CREATE TABLE AS / SELECT INTO commands;Tom Lane
2005-06-09Add missing #include -- mea culpa.Tom Lane
2005-06-09Put a critical section around update of hash index metapage. PerTom Lane
2005-06-09Simplify the planner's join clause management by storing join clausesTom Lane
2005-06-08Marginal hack to avoid spending a lot of time in find_join_rel duringTom Lane
2005-06-08Remove grammar productions for prefix and postfix % and ^ operators,Tom Lane
2005-06-08Change WAL-logging scheme for multixacts to be more like regularTom Lane
2005-06-07Mention ipcrm and ipcclean in error message.Bruce Momjian
2005-06-07Add a function lastval(), which returns the value returned by theNeil Conway
2005-06-07Ipcrm -> ipcclean in error message:Bruce Momjian
2005-06-06Modify XLogInsert API to make callers specify whether pages to be backedTom Lane
2005-06-06Remove the mostly-stubbed-out-anyway support routines for WAL UNDO.Tom Lane
2005-06-06Nab some low-hanging fruit: replace the planner's base_rel_list andTom Lane
2005-06-05Remove planner's private fields from Query struct, and put them intoTom Lane
2005-06-05Code for SET/SHOW TIME ZONE with a fixed-interval timezone was notTom Lane
2005-06-05Replace the parser's namespace tree (which formerly had the sameTom Lane
2005-06-04Back out patch:Bruce Momjian
2005-06-04Add comment for multi-byte computation.Bruce Momjian
2005-06-04Allow kerberos name and username case sensitivity to be specified fromBruce Momjian
2005-06-04Tom Lane <tgl@sss.pgh.pa.us> writes:Bruce Momjian
2005-06-04Change expandRTE() and ResolveNew() back to taking just the singleTom Lane
2005-06-04Improve readability of config location params by adding newline.Bruce Momjian
2005-06-04Fix NUMERIC modulus to properly truncate division in computation.Bruce Momjian
2005-06-04Remove unused 'printCost' field from ExplainState, and simplify the codeNeil Conway
2005-06-03Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane
2005-06-03Just noticed that you can't Query-Cancel a long planner run, becauseTom Lane
2005-06-02Push enable/disable of notify and catchup interrupts all the way downTom Lane
2005-06-02The no-lexer-backup speedup hadn't been there a week before somebodyTom Lane
2005-06-02Change CRCs in WAL records from 64bit to 32bit for performance reasons.Tom Lane
2005-06-02Add support for \x hex escapes in backend strings. Octal was alreadyBruce Momjian
2005-06-02Add support for \x hex escapes in COPY.Bruce Momjian
2005-06-01Fix log_statement to properly recognize SELECT INTO and CREATE TABLE ASBruce Momjian
2005-06-01patternsel() was improperly stripping RelabelType from the derivedTom Lane
2005-05-31Add test to WAL replay to verify that xl_prev points back to the previousTom Lane
2005-05-31Fix information_schema for OUT and INOUT parameters.Tom Lane
2005-05-31Teach ruleutils to drill down into RECORD-type Vars in the same wayTom Lane
2005-05-31ParseComplexProjection should make use of expandRecordVariable so thatTom Lane
2005-05-30Document get_call_result_type() and friends; mark TypeGetTupleDesc()Tom Lane
2005-05-30Add support for FUNCTION RTEs to build_physical_tlist(), so that theTom Lane
2005-05-30When enqueueing after-row triggers for updates of a table with a foreignNeil Conway
2005-05-30Create separate ON INSERT and ON UPDATE triggers on tables with foreignNeil Conway