summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Add BETWEEN SYMMETRIC.Bruce Momjian2005-06-142-10/+43
* Simplify shared-memory lock data structures as per recent discussion:Tom Lane2005-06-145-216/+183
* Add pg_postmaster_start_time() function.Bruce Momjian2005-06-143-3/+39
* Have SHOW ALL include variable descriptions.Bruce Momjian2005-06-141-6/+13
* Add GUC krb_server_hostname so the server hostname can be specified asBruce Momjian2005-06-142-15/+30
* The random selection in function linear() could deliver a value equal to maxTom Lane2005-06-141-12/+25
* WAL for GiST. It work for online backup and so on, but onTeodor Sigaev2005-06-146-1079/+1876
* Teach planner to optionally ignore index columns that have an equalityTom Lane2005-06-141-13/+276
* Change the planner to allow indexscan qualification clauses to useTom Lane2005-06-136-79/+154
* Adjust lo_open() so that specifying INV_READ without INV_WRITE createsTom Lane2005-06-132-62/+115
* Separate predicate-testing code out of indxpath.c, making it a moduleTom Lane2005-06-105-683/+704
* Adjust comment about %t and %s to cover %m as well. Some trivialTom Lane2005-06-101-21/+17
* Fix bug in MIC -> EUC_JP conversion. Per Atsushi Ogawa.Tatsuo Ishii2005-06-101-2/+2
* Implement two new special variables in PL/PgSQL: SQLSTATE and SQLERRM.Neil Conway2005-06-101-16/+22
* Quick hack to allow the outer query's tuple_fraction to be passed downTom Lane2005-06-102-3/+46
* If a LIMIT is applied to a UNION ALL query, plan each UNION arm asTom Lane2005-06-102-116/+175
* Revise searching of subplan target lists to use something more efficientTom Lane2005-06-101-194/+248
* Free buffer allocated via malloc (process is short-lived, but fix it anyway).Bruce Momjian2005-06-091-1/+2
* Mention prefix %t has no milliseconds.Bruce Momjian2005-06-091-1/+1
* Restructure log_line_prefix options to be clearer:Bruce Momjian2005-06-091-9/+15
* This patch against 8.0.0beta1 source adds log_line_prefix options forBruce Momjian2005-06-092-2/+34
* Fix typo in comment, per Alvaro.Tom Lane2005-06-091-2/+2
* Fix assign_datestyle() so that it doesn't misleadingly complain aboutTom Lane2005-06-091-16/+27
* Make SPI set SPI_processed for CREATE TABLE AS / SELECT INTO commands;Tom Lane2005-06-091-4/+6
* Add missing #include -- mea culpa.Tom Lane2005-06-091-1/+2
* Put a critical section around update of hash index metapage. PerTom Lane2005-06-091-1/+12
* Simplify the planner's join clause management by storing join clausesTom Lane2005-06-0915-405/+242
* Marginal hack to avoid spending a lot of time in find_join_rel duringTom Lane2005-06-086-22/+176
* Remove grammar productions for prefix and postfix % and ^ operators,Tom Lane2005-06-081-17/+1
* Change WAL-logging scheme for multixacts to be more like regularTom Lane2005-06-084-247/+464
* Mention ipcrm and ipcclean in error message.Bruce Momjian2005-06-071-2/+3
* Add a function lastval(), which returns the value returned by theNeil Conway2005-06-071-31/+83
* Ipcrm -> ipcclean in error message:Bruce Momjian2005-06-071-2/+2
* Modify XLogInsert API to make callers specify whether pages to be backedTom Lane2005-06-0613-145/+156
* Remove the mostly-stubbed-out-anyway support routines for WAL UNDO.Tom Lane2005-06-0615-617/+351
* Nab some low-hanging fruit: replace the planner's base_rel_list andTom Lane2005-06-064-102/+128
* Remove planner's private fields from Query struct, and put them intoTom Lane2005-06-0534-565/+682
* Code for SET/SHOW TIME ZONE with a fixed-interval timezone was notTom Lane2005-06-051-3/+11
* Replace the parser's namespace tree (which formerly had the sameTom Lane2005-06-057-481/+314
* Back out patch:Bruce Momjian2005-06-041-12/+1
* Add comment for multi-byte computation.Bruce Momjian2005-06-041-1/+2
* Allow kerberos name and username case sensitivity to be specified fromBruce Momjian2005-06-043-9/+39
* Tom Lane <tgl@sss.pgh.pa.us> writes:Bruce Momjian2005-06-041-1/+12
* Change expandRTE() and ResolveNew() back to taking just the singleTom Lane2005-06-049-88/+87
* Improve readability of config location params by adding newline.Bruce Momjian2005-06-041-0/+1
* Fix NUMERIC modulus to properly truncate division in computation.Bruce Momjian2005-06-041-19/+22
* Remove unused 'printCost' field from ExplainState, and simplify the codeNeil Conway2005-06-041-39/+28
* Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane2005-06-038-81/+263
* Just noticed that you can't Query-Cancel a long planner run, becauseTom Lane2005-06-031-1/+7
* Push enable/disable of notify and catchup interrupts all the way downTom Lane2005-06-022-23/+139