| Commit message (Expand) | Author | Age | Files | Lines |
| * | Make "log_min_duration_statement" SUSET --- will be adjusted with new | Bruce Momjian | 2003-06-11 | 1 | -2/+2 |
| * | Fix brain damage in deciding which python input converter to use. | Tom Lane | 2003-06-11 | 1 | -66/+31 |
| * | Add log_min_duration_statement. | Bruce Momjian | 2003-06-11 | 5 | -13/+48 |
| * | pg_dump and pg_restore were stripping quotes and downcasing some but | Tom Lane | 2003-06-11 | 2 | -143/+20 |
| * | Well, the discussion about SSL a bit back perked my interest and I did | Bruce Momjian | 2003-06-11 | 1 | -4/+14 |
| * | During looking stuff up for a discussion on -general, I realized that | Bruce Momjian | 2003-06-11 | 1 | -12/+13 |
| * | Add missing DLLIMPORT for cpu_index_tuple_cost to | Bruce Momjian | 2003-06-11 | 1 | -2/+2 |
| * | Represent grant options in the information schema. | Peter Eisentraut | 2003-06-11 | 4 | -38/+139 |
| * | Add Rendezvous support to postmaster, from Chris Campbell | Bruce Momjian | 2003-06-11 | 2 | -1/+31 |
| * | Make sure a variable is no longer referenced when it is removed. | Michael Meskes | 2003-06-11 | 3 | -12/+38 |
| * | Document the -h client flag can use a socket directory as well as a host | Bruce Momjian | 2003-06-11 | 12 | -26/+26 |
| * | Remove lock* GUC variables from postgresql.conf. | Bruce Momjian | 2003-06-11 | 2 | -15/+4 |
| * | Fixed some bugs. | Michael Meskes | 2003-06-10 | 3 | -74/+110 |
| * | freeaddrinfo2() does need two parameters after all, per comment by | Tom Lane | 2003-06-09 | 5 | -34/+48 |
| * | libpq can now talk to either 3.0 or 2.0 protocol servers. It first tries | Tom Lane | 2003-06-08 | 13 | -1553/+3333 |
| * | Add -DFRONTEND for non-MinGW Win32 ports. | Bruce Momjian | 2003-06-06 | 1 | -2/+2 |
| * | Add defense in assign_session_authorization() against trying to do | Tom Lane | 2003-06-06 | 1 | -1/+11 |
| * | Implement outer-level aggregates to conform to the SQL spec, with | Tom Lane | 2003-06-06 | 25 | -227/+582 |
| * | Information schema views about functions | Peter Eisentraut | 2003-06-05 | 2 | -5/+177 |
| * | Support for Intel compiler on Linux | Peter Eisentraut | 2003-06-05 | 2 | -3/+3 |
| * | Make the world at least marginally safe for usernames with embedded spaces. | Tom Lane | 2003-06-02 | 2 | -54/+68 |
| * | In src/include/mb/pg_wchar.h we have: | Bruce Momjian | 2003-06-02 | 1 | -2/+2 |
| * | Fixed segfault in forward definition parsing. | Michael Meskes | 2003-06-02 | 2 | -3/+7 |
| * | markTargetListOrigin neglected to handle outer-scope Vars properly; | Tom Lane | 2003-05-31 | 1 | -1/+8 |
| * | Cause pg_dumpall to support the -a, -s, -x options of pg_dump. | Tom Lane | 2003-05-30 | 1 | -11/+40 |
| * | Cause pg_dumpall to include GRANT/REVOKE for database-level permissions | Tom Lane | 2003-05-30 | 4 | -289/+405 |
| * | Small performance improvement for hash joins and hash aggregation: | Tom Lane | 2003-05-30 | 2 | -40/+76 |
| * | Create a real prototype function for describe. | Michael Meskes | 2003-05-30 | 5 | -18/+32 |
| * | Sync and some minor cleanup/fixing work plus an EXEC SQL DESCRIBE prototype. | Michael Meskes | 2003-05-30 | 6 | -114/+163 |
| * | Ensure that in all flex lexers that are part of the backend, a | Tom Lane | 2003-05-29 | 4 | -7/+14 |
| * | one more change to correctly support the removeall of autocommit | Barry Lind | 2003-05-29 | 1 | -3/+14 |
| * | Adopt latest bison's spelling of 'syntax error' rather than 'parse error' | Tom Lane | 2003-05-29 | 7 | -45/+45 |
| * | Don't explicitly close() the session socket during backend exit; instead | Tom Lane | 2003-05-29 | 1 | -3/+18 |
| * | AFAICT, none of our shared libraries are anywhere near big enough to | Tom Lane | 2003-05-29 | 1 | -1/+1 |
| * | Changed variable parsing so struct[n].attr works. | Michael Meskes | 2003-05-29 | 9 | -159/+121 |
| * | Parse forward definiton of structs. | Michael Meskes | 2003-05-29 | 6 | -139/+163 |
| * | Applied patch from Fernando Nasser to fix up small type error | Barry Lind | 2003-05-29 | 2 | -4/+4 |
| * | Applied patch from Fernando Nasser to improve buffer sizes to avoid unnecessa... | Barry Lind | 2003-05-29 | 2 | -4/+4 |
| * | clean up warnings produced by Eclipse | Barry Lind | 2003-05-29 | 29 | -115/+118 |
| * | Adding .cvsignore files for Eclipse IDE | Barry Lind | 2003-05-29 | 2 | -0/+7 |
| * | Up the build number to reflect the changes for V3 protocol support | Barry Lind | 2003-05-29 | 1 | -2/+2 |
| * | Initial attempt to integrate in V3 protocol support. This is still a work in | Barry Lind | 2003-05-29 | 14 | -82/+841 |
| * | Add a regression test to catch future silliness in the index-building | Tom Lane | 2003-05-29 | 2 | -0/+15 |
| * | Fix stupid oversight :-( | Tom Lane | 2003-05-29 | 1 | -2/+5 |
| * | Knock down a couple more lappend() hotspots for large WHERE clauses. | Tom Lane | 2003-05-28 | 2 | -32/+40 |
| * | Fix some planner performance problems with large WHERE clauses, by | Tom Lane | 2003-05-28 | 8 | -192/+364 |
| * | Fix breakage of LINUX_PROFILE code due to recent Windows changes. | Tom Lane | 2003-05-28 | 1 | -35/+26 |
| * | Fix things so that an error occuring during standalone-backend processing | Tom Lane | 2003-05-28 | 6 | -23/+44 |
| * | In bootstrap and standalone-backend modes, do not sort LOG elevel out | Tom Lane | 2003-05-28 | 5 | -24/+35 |
| * | Replace functional-index facility with expressional indexes. Any column | Tom Lane | 2003-05-28 | 44 | -1172/+1231 |