| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove somebody's ill-considered free() call, per report from Chander Ganesan. | Tom Lane | 2006-10-12 | 1 | -2/+1 |
| | | | | | | No, I do not care whether Coverity considers this a memory leak. It's entirely not worth the code space to do it correctly. | ||||
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 1 | -186/+201 |
| | | |||||
| * | Suppress useless warning on pre-XP versions of Windows. Magnus | Tom Lane | 2006-09-24 | 1 | -2/+10 |
| | | |||||
| * | Fixed a few memory leaks. One indeed was part of a loop. | Michael Meskes | 2006-08-21 | 1 | -1/+4 |
| | | |||||
| * | Fix a few places where $Id$ and $Header$ CVS tags had crept into the | Tom Lane | 2006-07-16 | 1 | -1/+1 |
| | | | | | source tree. They should all be $PostgreSQL$ of course. | ||||
| * | Our version of getopt_long does not set optarg upon detecting an error, as | Alvaro Herrera | 2006-06-25 | 1 | -2/+2 |
| | | | | | | | opposed to what other versions apparently do, so it's not safe to print an error message. Besides, getopt_long itself already did, so it's redundant anyway. | ||||
| * | Merge postmaster and postgres command into just postgres. postmaster | Peter Eisentraut | 2006-06-18 | 1 | -43/+43 |
| | | | | | | symlink is kept for now for compatibility. To call single-user mode, use postgres --single. | ||||
| * | Prepare code to be built by MSVC: | Bruce Momjian | 2006-06-07 | 1 | -7/+7 |
| | | | | | | | | | | | o remove many WIN32_CLIENT_ONLY defines o add WIN32_ONLY_COMPILER define o add 3rd argument to open() for portability o add include/port/win32_msvc directory for system includes Magnus Hagander | ||||
| * | Update copyright for 2006. Update scripts. | Bruce Momjian | 2006-03-05 | 2 | -4/+4 |
| | | |||||
| * | Enable pg_ctl to give up admin privileges when starting the server under | Tom Lane | 2006-02-10 | 1 | -27/+219 |
| | | | | | | | Windows (if newer than NT4, else works same as before). Magnus | ||||
| * | Make --version option print fixed program name. | Peter Eisentraut | 2006-02-07 | 1 | -2/+2 |
| | | |||||
| * | Fix pg_ctl crash on "unregister" when a data directory is not specified. | Peter Eisentraut | 2006-01-14 | 1 | -5/+8 |
| | | | | | by Magnus Hagander | ||||
| * | Remove BEOS port. | Bruce Momjian | 2006-01-05 | 1 | -3/+1 |
| | | |||||
| * | Remove DOS line endings ("\r\n") from several .po files. DOS line endings | Neil Conway | 2006-01-01 | 1 | -503/+503 |
| | | | | | | are inconsistent with the rest of the .po files, and apparently cause problems for Sun's cc. Per report on IRC from "bitvector2". | ||||
| * | Allow installation into directories containing spaces in the name. | Peter Eisentraut | 2005-12-09 | 1 | -4/+4 |
| | | |||||
| * | Re-run pgindent, fixing a problem where comment lines after a blank | Bruce Momjian | 2005-11-22 | 1 | -4/+4 |
| | | | | | | | | | | comment line where output as too long, and update typedefs for /lib directory. Also fix case where identifiers were used as variable names in the backend, but as typedefs in ecpg (favor the backend for indenting). Backpatch to 8.1.X. | ||||
| * | Translation updates forward-port to HEAD. | Alvaro Herrera | 2005-11-07 | 1 | -102/+112 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-11-04 | 1 | -1/+1 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-10-29 | 3 | -267/+241 |
| | | |||||
| * | Standard pgindent run for 8.1. | Bruce Momjian | 2005-10-15 | 1 | -35/+35 |
| | | |||||
| * | Translation update | Peter Eisentraut | 2005-10-10 | 3 | -342/+358 |
| | | |||||
| * | Awhile back we replaced all uses of strcasecmp and strncasecmp with | Tom Lane | 2005-07-25 | 1 | -2/+2 |
| | | | | | | | pg_strcasecmp and pg_strncasecmp ... but I see some of the former have crept back in. Eternal vigilance is the price of locale independence, apparently. | ||||
| * | Rename xmalloc to pg_malloc for consistency with psql usage. | Bruce Momjian | 2005-07-10 | 1 | -8/+8 |
| | | | | | Add missing plperl include. | ||||
| * | Cause initdb to create a third standard database "postgres", which | Tom Lane | 2005-06-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | unlike template0 and template1 does not have any special status in terms of backend functionality. However, all external utilities such as createuser and createdb now connect to "postgres" instead of template1, and the documentation is changed to encourage people to use "postgres" instead of template1 as a play area. This should fix some longstanding gotchas involving unexpected propagation of database objects by createdb (when you used template1 without understanding the implications), as well as ameliorating the problem that CREATE DATABASE is unhappy if anyone else is connected to template1. Patch by Dave Page, minor editing by Tom Lane. All per recent pghackers discussions. | ||||
| * | Use postmaster_is_alive() check in pg_ctl restart as well as pg_ctl status, | Tom Lane | 2005-05-04 | 1 | -30/+45 |
| | | | | | so that restart doesn't fail when old postmaster died unbetimes. | ||||
| * | Make pg_ctl status do a kill() test to verify that the PID found in | Tom Lane | 2005-04-20 | 1 | -23/+61 |
| | | | | | postmaster.pid still represents a live postmaster. | ||||
| * | Have libpgport link before libpq so that PG client applications are more | Bruce Momjian | 2005-03-25 | 1 | -2/+2 |
| | | | | | immunte to changes in libpq's usage of pgport between major versions. | ||||
| * | Define snprintf() to call pg_snprintf() so our own snprintf-like | Bruce Momjian | 2005-03-11 | 1 | -3/+7 |
| | | | | | | implementation doesn't export out via libpq and get used by a user application. | ||||
| * | Replace an instance of $Id$ and an instance of $Header$ with $PostgreSQL$ | Neil Conway | 2005-03-07 | 1 | -1/+1 |
| | | |||||
| * | Use _() macro consistently rather than gettext(). Add translation | Bruce Momjian | 2005-02-22 | 1 | -2/+1 |
| | | | | | macros around strings that were missing them. | ||||
| * | Translation updates | Peter Eisentraut | 2005-01-17 | 1 | -105/+126 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-17 | 1 | -7/+22 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-17 | 1 | -9/+24 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-17 | 2 | -109/+144 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-17 | 2 | -64/+120 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-13 | 1 | -66/+67 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-13 | 1 | -84/+89 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-09 | 1 | -89/+95 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-09 | 1 | -92/+126 |
| | | |||||
| * | Translation updates | Dennis Bjorklund | 2005-01-06 | 1 | -104/+162 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-06 | 1 | -1/+1 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-06 | 1 | -118/+125 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2005-01-03 | 1 | -82/+88 |
| | | |||||
| * | Tag appropriate files for rc3 | PostgreSQL Daemon | 2004-12-31 | 2 | -4/+4 |
| | | | | | | | | | Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ... | ||||
| * | Translation updates | Peter Eisentraut | 2004-12-29 | 1 | -86/+91 |
| | | |||||
| * | Remove extra parenthesis. | Tom Lane | 2004-12-23 | 1 | -2/+2 |
| | | |||||
| * | Add error checking for starting a win32 service using pg_ctl. | Bruce Momjian | 2004-12-21 | 1 | -2/+6 |
| | | |||||
| * | Return proper error exit code on pg_ctl -w start failure. | Bruce Momjian | 2004-12-21 | 1 | -1/+4 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2004-12-16 | 3 | -106/+661 |
| | | |||||
| * | Translation updates | Peter Eisentraut | 2004-12-13 | 1 | -110/+134 |
| | | |||||
