summaryrefslogtreecommitdiff
path: root/src/bin/scripts
AgeCommit message (Collapse)Author
2004-11-16Translation updatePeter Eisentraut
2004-11-09Get rid of perror(), substitute some better phrased error messages.Peter Eisentraut
malloc() doesn't set errno, so most uses were buggy anyway.
2004-11-09Translation updatesPeter Eisentraut
2004-11-02Translation updatesPeter Eisentraut
2004-10-28Translation updatesPeter Eisentraut
2004-10-22Translation updatesPeter Eisentraut
2004-10-18New translationPeter Eisentraut
2004-10-16Allow pg_ctl to determine the server is up when getting a request for aBruce Momjian
password. Make password error message a #define and use it consistently. Sean Chittenden
2004-10-05Add Win32 version info to client binaries.Bruce Momjian
Magnus Hagander
2004-10-04Readd -DFRONTEND to client makefiles because it still affects win32.hBruce Momjian
defines.
2004-10-04Make libpgport be front-end only and make libpgport_srv be a backendBruce Momjian
library that uses palloc, ereport, etc. This simplifies the makefiles for client applications.
2004-10-03Translation updatesPeter Eisentraut
2004-09-20Translation updatePeter Eisentraut
2004-09-20Translation updatesPeter Eisentraut
2004-09-13Translation updatesPeter Eisentraut
2004-09-13Translation updatesPeter Eisentraut
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-13New translationsPeter Eisentraut
2004-08-13Translation updatesPeter Eisentraut
2004-08-10Translation updatesPeter Eisentraut
2004-08-10Translation updatesPeter Eisentraut
2004-08-04Label CVS tip as 8.0devel instead of 7.5devel. Adjust various commentsTom Lane
and documentation to reference 8.0 instead of 7.5.
2004-08-01Translation updates (zh_TW converted to UTF-8)Peter Eisentraut
2004-07-25Translation updatesPeter Eisentraut
2004-06-25Translation updatesDennis Bjorklund
2004-06-18Replace createdb's obsolete --location switch with --tablespace.Tom Lane
I kept the same abbreviated letter -D, in hopes of maintaining some modicum of backwards compatibility (though it's doubtful whether anyone is really using scripts that invoke createdb -D ...)
2004-06-03Add PGETC (for pg_service.conf) and PGLOCALE (for locale dir)Bruce Momjian
environment variable processing to libpq. The patch also adds code to our client apps so we set the environment variable directly based on our binary location, unless it is already set. This will allow our applications to emit proper locale messages that are generated in libpq.
2004-06-01Remove init_nls() functions, call set_pglocale() directly.Bruce Momjian
Add locale to pg_ctl.c.
2004-05-29Translation updatesPeter Eisentraut
2004-05-26Recent commits added created files that weren't getting deleted byTom Lane
'make clean'.
2004-05-25Make the locale location relocatable.Bruce Momjian
Adjust get_*_path functions to be limited to MAXPGPATH.
2004-05-12Rename find_my_binary/find_other_binary toBruce Momjian
find_my_exec/find_other_exec(). Remove passing of progname to these functions as they can find that out from argv[0], which they already have. Make get_progname return const char *, and update all progname variables to be const char *.
2004-04-26Add $(X) for cross-compiling. Seems the mingw compiler running onBruce Momjian
FreeBSD doesn't add .EXE to links. Michiel Ephraim
2004-04-19* Most changes are to fix warnings issued when compiling win32Bruce Momjian
* removed a few redundant defines * get_user_name safe under win32 * rationalized pipe read EOF for win32 (UPDATED PATCH USED) * changed all backend instances of sleep() to pg_usleep - except for the SLEEP_ON_ASSERT in assert.c, as it would exceed a 32-bit long [Note to patcher: If a SLEEP_ON_ASSERT of 2000 seconds is acceptable, please replace with pg_usleep(2000000000L)] I added a comment to that part of the code: /* * It would be nice to use pg_usleep() here, but only does 2000 sec * or 33 minutes, which seems too short. */ sleep(1000000); Claudio Natoli
2004-04-15Translation updatesPeter Eisentraut
2004-03-19Create a validator for plpgsql, so that some minimal syntax checkingTom Lane
is done at creation time for plpgsql functions. Improve createlang and droplang to support adding/dropping validators for PLs. Initial steps towards producing a syntax error position from plpgsql syntax errors (this part is a work in progress, and will change depending on outcome of current discussions).
2004-01-09Fix incorrect SQL syntax emitted when -E is given without -P.Tom Lane
Report and fix from Martin Pitt.
2004-01-01Do an explicit fflush after writing a progress message with puts.Tom Lane
This ensures stdout is kept in sync with messages on stderr. Per report from Olaf Ferger.
2003-11-29make sure the $Id tags are converted to $PostgreSQL as well ...PostgreSQL Daemon
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-10-25Translation updatesPeter Eisentraut
2003-10-11Translation updatesPeter Eisentraut
2003-10-08New translationsPeter Eisentraut
2003-10-06Translation updatesPeter Eisentraut
2003-10-06New Slovene translationsPeter Eisentraut
2003-10-06Translation updatesPeter Eisentraut
2003-09-15Translation updatesPeter Eisentraut
2003-09-12Remove WIN32_CONSOLE support, at the request of the author.Bruce Momjian
2003-09-07Changes for MinGW/WIN32:Bruce Momjian
o allow configure to see include/port/win32 include files o add matching Win32 accept() prototype o allow pg_id to compile with native Win32 API o fix invalide mbvalidate() function calls (existing bug) o allow /scripts to compile with native Win32 API o add win32.c to Win32 compiles (already in *.mak files)