summaryrefslogtreecommitdiff
path: root/src/bin/pg_ctl
Commit message (Collapse)AuthorAgeFilesLines
* Remove somebody's ill-considered free() call, per report from Chander Ganesan.Tom Lane2006-10-121-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 Momjian2006-10-041-186/+201
|
* Suppress useless warning on pre-XP versions of Windows. MagnusTom Lane2006-09-241-2/+10
|
* Fixed a few memory leaks. One indeed was part of a loop.Michael Meskes2006-08-211-1/+4
|
* Fix a few places where $Id$ and $Header$ CVS tags had crept into theTom Lane2006-07-161-1/+1
| | | | source tree. They should all be $PostgreSQL$ of course.
* Our version of getopt_long does not set optarg upon detecting an error, asAlvaro Herrera2006-06-251-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. postmasterPeter Eisentraut2006-06-181-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 Momjian2006-06-071-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 Momjian2006-03-052-4/+4
|
* Enable pg_ctl to give up admin privileges when starting the server underTom Lane2006-02-101-27/+219
| | | | | | Windows (if newer than NT4, else works same as before). Magnus
* Make --version option print fixed program name.Peter Eisentraut2006-02-071-2/+2
|
* Fix pg_ctl crash on "unregister" when a data directory is not specified.Peter Eisentraut2006-01-141-5/+8
| | | | by Magnus Hagander
* Remove BEOS port.Bruce Momjian2006-01-051-3/+1
|
* Remove DOS line endings ("\r\n") from several .po files. DOS line endingsNeil Conway2006-01-011-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 Eisentraut2005-12-091-4/+4
|
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-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 Herrera2005-11-071-102/+112
|
* Translation updatesPeter Eisentraut2005-11-041-1/+1
|
* Translation updatesPeter Eisentraut2005-10-293-267/+241
|
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-35/+35
|
* Translation updatePeter Eisentraut2005-10-103-342/+358
|
* Awhile back we replaced all uses of strcasecmp and strncasecmp withTom Lane2005-07-251-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 Momjian2005-07-101-8/+8
| | | | Add missing plperl include.
* Cause initdb to create a third standard database "postgres", whichTom Lane2005-06-211-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 Lane2005-05-041-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 inTom Lane2005-04-201-23/+61
| | | | postmaster.pid still represents a live postmaster.
* Have libpgport link before libpq so that PG client applications are moreBruce Momjian2005-03-251-2/+2
| | | | immunte to changes in libpq's usage of pgport between major versions.
* Define snprintf() to call pg_snprintf() so our own snprintf-likeBruce Momjian2005-03-111-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 Conway2005-03-071-1/+1
|
* Use _() macro consistently rather than gettext(). Add translationBruce Momjian2005-02-221-2/+1
| | | | macros around strings that were missing them.
* Translation updatesPeter Eisentraut2005-01-171-105/+126
|
* Translation updatesPeter Eisentraut2005-01-171-7/+22
|
* Translation updatesPeter Eisentraut2005-01-171-9/+24
|
* Translation updatesPeter Eisentraut2005-01-172-109/+144
|
* Translation updatesPeter Eisentraut2005-01-172-64/+120
|
* Translation updatesPeter Eisentraut2005-01-131-66/+67
|
* Translation updatesPeter Eisentraut2005-01-131-84/+89
|
* Translation updatesPeter Eisentraut2005-01-091-89/+95
|
* Translation updatesPeter Eisentraut2005-01-091-92/+126
|
* Translation updatesDennis Bjorklund2005-01-061-104/+162
|
* Translation updatesPeter Eisentraut2005-01-061-1/+1
|
* Translation updatesPeter Eisentraut2005-01-061-118/+125
|
* Translation updatesPeter Eisentraut2005-01-031-82/+88
|
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-312-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 updatesPeter Eisentraut2004-12-291-86/+91
|
* Remove extra parenthesis.Tom Lane2004-12-231-2/+2
|
* Add error checking for starting a win32 service using pg_ctl.Bruce Momjian2004-12-211-2/+6
|
* Return proper error exit code on pg_ctl -w start failure.Bruce Momjian2004-12-211-1/+4
|
* Translation updatesPeter Eisentraut2004-12-163-106/+661
|
* Translation updatesPeter Eisentraut2004-12-131-110/+134
|