Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-11-16 | Translation update | Peter Eisentraut | |
2004-11-09 | Get rid of perror(), substitute some better phrased error messages. | Peter Eisentraut | |
malloc() doesn't set errno, so most uses were buggy anyway. | |||
2004-11-09 | Translation updates | Peter Eisentraut | |
2004-11-02 | Translation updates | Peter Eisentraut | |
2004-10-28 | Translation updates | Peter Eisentraut | |
2004-10-22 | Translation updates | Peter Eisentraut | |
2004-10-18 | New translation | Peter Eisentraut | |
2004-10-16 | Allow pg_ctl to determine the server is up when getting a request for a | Bruce Momjian | |
password. Make password error message a #define and use it consistently. Sean Chittenden | |||
2004-10-05 | Add Win32 version info to client binaries. | Bruce Momjian | |
Magnus Hagander | |||
2004-10-04 | Readd -DFRONTEND to client makefiles because it still affects win32.h | Bruce Momjian | |
defines. | |||
2004-10-04 | Make libpgport be front-end only and make libpgport_srv be a backend | Bruce Momjian | |
library that uses palloc, ereport, etc. This simplifies the makefiles for client applications. | |||
2004-10-03 | Translation updates | Peter Eisentraut | |
2004-09-20 | Translation update | Peter Eisentraut | |
2004-09-20 | Translation updates | Peter Eisentraut | |
2004-09-13 | Translation updates | Peter Eisentraut | |
2004-09-13 | Translation updates | Peter Eisentraut | |
2004-08-29 | Pgindent run for 8.0. | Bruce Momjian | |
2004-08-29 | Update copyright to 2004. | Bruce Momjian | |
2004-08-13 | New translations | Peter Eisentraut | |
2004-08-13 | Translation updates | Peter Eisentraut | |
2004-08-10 | Translation updates | Peter Eisentraut | |
2004-08-10 | Translation updates | Peter Eisentraut | |
2004-08-04 | Label CVS tip as 8.0devel instead of 7.5devel. Adjust various comments | Tom Lane | |
and documentation to reference 8.0 instead of 7.5. | |||
2004-08-01 | Translation updates (zh_TW converted to UTF-8) | Peter Eisentraut | |
2004-07-25 | Translation updates | Peter Eisentraut | |
2004-06-25 | Translation updates | Dennis Bjorklund | |
2004-06-18 | Replace 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-03 | Add 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-01 | Remove init_nls() functions, call set_pglocale() directly. | Bruce Momjian | |
Add locale to pg_ctl.c. | |||
2004-05-29 | Translation updates | Peter Eisentraut | |
2004-05-26 | Recent commits added created files that weren't getting deleted by | Tom Lane | |
'make clean'. | |||
2004-05-25 | Make the locale location relocatable. | Bruce Momjian | |
Adjust get_*_path functions to be limited to MAXPGPATH. | |||
2004-05-12 | Rename find_my_binary/find_other_binary to | Bruce 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-26 | Add $(X) for cross-compiling. Seems the mingw compiler running on | Bruce Momjian | |
FreeBSD doesn't add .EXE to links. Michiel Ephraim | |||
2004-04-19 | * Most changes are to fix warnings issued when compiling win32 | Bruce 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-15 | Translation updates | Peter Eisentraut | |
2004-03-19 | Create a validator for plpgsql, so that some minimal syntax checking | Tom 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-09 | Fix incorrect SQL syntax emitted when -E is given without -P. | Tom Lane | |
Report and fix from Martin Pitt. | |||
2004-01-01 | Do 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-29 | make sure the $Id tags are converted to $PostgreSQL as well ... | PostgreSQL Daemon | |
2003-11-29 | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | |
2003-10-25 | Translation updates | Peter Eisentraut | |
2003-10-11 | Translation updates | Peter Eisentraut | |
2003-10-08 | New translations | Peter Eisentraut | |
2003-10-06 | Translation updates | Peter Eisentraut | |
2003-10-06 | New Slovene translations | Peter Eisentraut | |
2003-10-06 | Translation updates | Peter Eisentraut | |
2003-09-15 | Translation updates | Peter Eisentraut | |
2003-09-12 | Remove WIN32_CONSOLE support, at the request of the author. | Bruce Momjian | |
2003-09-07 | Changes 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) |