| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add BETWEEN SYMMETRIC. | Bruce Momjian | 2005-06-14 | 2 | -10/+43 |
| * | Simplify shared-memory lock data structures as per recent discussion: | Tom Lane | 2005-06-14 | 5 | -216/+183 |
| * | Add pg_postmaster_start_time() function. | Bruce Momjian | 2005-06-14 | 3 | -3/+39 |
| * | Have SHOW ALL include variable descriptions. | Bruce Momjian | 2005-06-14 | 1 | -6/+13 |
| * | Add GUC krb_server_hostname so the server hostname can be specified as | Bruce Momjian | 2005-06-14 | 2 | -15/+30 |
| * | The random selection in function linear() could deliver a value equal to max | Tom Lane | 2005-06-14 | 1 | -12/+25 |
| * | WAL for GiST. It work for online backup and so on, but on | Teodor Sigaev | 2005-06-14 | 6 | -1079/+1876 |
| * | Teach planner to optionally ignore index columns that have an equality | Tom Lane | 2005-06-14 | 1 | -13/+276 |
| * | Change the planner to allow indexscan qualification clauses to use | Tom Lane | 2005-06-13 | 6 | -79/+154 |
| * | Adjust lo_open() so that specifying INV_READ without INV_WRITE creates | Tom Lane | 2005-06-13 | 2 | -62/+115 |
| * | Separate predicate-testing code out of indxpath.c, making it a module | Tom Lane | 2005-06-10 | 5 | -683/+704 |
| * | Adjust comment about %t and %s to cover %m as well. Some trivial | Tom Lane | 2005-06-10 | 1 | -21/+17 |
| * | Fix bug in MIC -> EUC_JP conversion. Per Atsushi Ogawa. | Tatsuo Ishii | 2005-06-10 | 1 | -2/+2 |
| * | Implement two new special variables in PL/PgSQL: SQLSTATE and SQLERRM. | Neil Conway | 2005-06-10 | 1 | -16/+22 |
| * | Quick hack to allow the outer query's tuple_fraction to be passed down | Tom Lane | 2005-06-10 | 2 | -3/+46 |
| * | If a LIMIT is applied to a UNION ALL query, plan each UNION arm as | Tom Lane | 2005-06-10 | 2 | -116/+175 |
| * | Revise searching of subplan target lists to use something more efficient | Tom Lane | 2005-06-10 | 1 | -194/+248 |
| * | Free buffer allocated via malloc (process is short-lived, but fix it anyway). | Bruce Momjian | 2005-06-09 | 1 | -1/+2 |
| * | Mention prefix %t has no milliseconds. | Bruce Momjian | 2005-06-09 | 1 | -1/+1 |
| * | Restructure log_line_prefix options to be clearer: | Bruce Momjian | 2005-06-09 | 1 | -9/+15 |
| * | This patch against 8.0.0beta1 source adds log_line_prefix options for | Bruce Momjian | 2005-06-09 | 2 | -2/+34 |
| * | Fix typo in comment, per Alvaro. | Tom Lane | 2005-06-09 | 1 | -2/+2 |
| * | Fix assign_datestyle() so that it doesn't misleadingly complain about | Tom Lane | 2005-06-09 | 1 | -16/+27 |
| * | Make SPI set SPI_processed for CREATE TABLE AS / SELECT INTO commands; | Tom Lane | 2005-06-09 | 1 | -4/+6 |
| * | Add missing #include -- mea culpa. | Tom Lane | 2005-06-09 | 1 | -1/+2 |
| * | Put a critical section around update of hash index metapage. Per | Tom Lane | 2005-06-09 | 1 | -1/+12 |
| * | Simplify the planner's join clause management by storing join clauses | Tom Lane | 2005-06-09 | 15 | -405/+242 |
| * | Marginal hack to avoid spending a lot of time in find_join_rel during | Tom Lane | 2005-06-08 | 6 | -22/+176 |
| * | Remove grammar productions for prefix and postfix % and ^ operators, | Tom Lane | 2005-06-08 | 1 | -17/+1 |
| * | Change WAL-logging scheme for multixacts to be more like regular | Tom Lane | 2005-06-08 | 4 | -247/+464 |
| * | Mention ipcrm and ipcclean in error message. | Bruce Momjian | 2005-06-07 | 1 | -2/+3 |
| * | Add a function lastval(), which returns the value returned by the | Neil Conway | 2005-06-07 | 1 | -31/+83 |
| * | Ipcrm -> ipcclean in error message: | Bruce Momjian | 2005-06-07 | 1 | -2/+2 |
| * | Modify XLogInsert API to make callers specify whether pages to be backed | Tom Lane | 2005-06-06 | 13 | -145/+156 |
| * | Remove the mostly-stubbed-out-anyway support routines for WAL UNDO. | Tom Lane | 2005-06-06 | 15 | -617/+351 |
| * | Nab some low-hanging fruit: replace the planner's base_rel_list and | Tom Lane | 2005-06-06 | 4 | -102/+128 |
| * | Remove planner's private fields from Query struct, and put them into | Tom Lane | 2005-06-05 | 34 | -565/+682 |
| * | Code for SET/SHOW TIME ZONE with a fixed-interval timezone was not | Tom Lane | 2005-06-05 | 1 | -3/+11 |
| * | Replace the parser's namespace tree (which formerly had the same | Tom Lane | 2005-06-05 | 7 | -481/+314 |
| * | Back out patch: | Bruce Momjian | 2005-06-04 | 1 | -12/+1 |
| * | Add comment for multi-byte computation. | Bruce Momjian | 2005-06-04 | 1 | -1/+2 |
| * | Allow kerberos name and username case sensitivity to be specified from | Bruce Momjian | 2005-06-04 | 3 | -9/+39 |
| * | Tom Lane <tgl@sss.pgh.pa.us> writes: | Bruce Momjian | 2005-06-04 | 1 | -1/+12 |
| * | Change expandRTE() and ResolveNew() back to taking just the single | Tom Lane | 2005-06-04 | 9 | -88/+87 |
| * | Improve readability of config location params by adding newline. | Bruce Momjian | 2005-06-04 | 1 | -0/+1 |
| * | Fix NUMERIC modulus to properly truncate division in computation. | Bruce Momjian | 2005-06-04 | 1 | -19/+22 |
| * | Remove unused 'printCost' field from ExplainState, and simplify the code | Neil Conway | 2005-06-04 | 1 | -39/+28 |
| * | Revise handling of dropped columns in JOIN alias lists to avoid a | Tom Lane | 2005-06-03 | 8 | -81/+263 |
| * | Just noticed that you can't Query-Cancel a long planner run, because | Tom Lane | 2005-06-03 | 1 | -1/+7 |
| * | Push enable/disable of notify and catchup interrupts all the way down | Tom Lane | 2005-06-02 | 2 | -23/+139 |