summaryrefslogtreecommitdiff
path: root/src/bin/scripts
AgeCommit message (Collapse)Author
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)
2003-08-25Translation updatesPeter Eisentraut
2003-08-24Translation updatesPeter Eisentraut
2003-08-11Translation updatesPeter Eisentraut
2003-08-08Move simple_prompt()/sprompt.c into /port.Bruce Momjian
2003-08-07Don't assume that struct option is available just because we can find aTom Lane
getopt_long(). This is more or less the same problem as we saw earlier with getaddrinfo() and struct addrinfo, and for the same reason: random user-added libraries might contain the subroutine, but there's no guarantee we will find the matching header files.
2003-08-04pgindent run.Bruce Momjian
2003-08-01Russian translation updates by Serguei MokhovPeter Eisentraut
2003-07-23Czech translation updates from Karel ZakPeter Eisentraut
2003-07-23Update German translations.Peter Eisentraut
2003-07-23Apply message style guide to frontend programs.Peter Eisentraut
2003-06-30Rename plpython to plpythonu, and update documentation to reflect itsTom Lane
now-untrusted status.
2003-06-18Change clusterdb and vacuumdb into C programs.Peter Eisentraut
2003-06-11Document the -h client flag can use a socket directory as well as a hostBruce Momjian
name.
2003-05-27Internationalize interactive yes/no responses.Peter Eisentraut
2003-05-14Backend support for autocommit removed, per recent discussions. TheTom Lane
only remnant of this failed experiment is that the server will take SET AUTOCOMMIT TO ON. Still TODO: provide some client-side autocommit logic in libpq.
2003-04-16Fix some problems exposed by building outside the source tree.Tom Lane
2003-04-04Add Win32 path handling for / vs. \ and drive letters.Bruce Momjian
2003-03-20Now that the CLUSTER ALL machinery is in place, the clusterdb script canBruce Momjian
be simplified (I'd thought that it can even be removed). This patch does that. Alvaro Herrera
2003-03-18Reimplement create and drop scripts in C, to reduce repetitivePeter Eisentraut
connections, increase robustness, add NLS, and prepare for Windows port. (vacuumdb and clusterdb will follow later.)
2003-02-19At present it is impossible to kill createuser except with kill -9Bruce Momjian
Oliver Elphick
2003-02-13This patch fixes an error in the usage message for 'clusterdb', andBruce Momjian
makes a few editorial changes to the documentation. Neil Conway
2002-10-21Cleanup for CLUSTERDB failure:Bruce Momjian
On Sat, Oct 19, 2002 at 12:11:32AM +0200, Peter Eisentraut wrote: > $ ./clusterdb > psql: could not connect to server: No such file or directory > Is the server running locally and accepting > connections on Unix domain socket "/tmp/.s.PGSQL.5432"? > psql: could not connect to server: No such file or directory > Is the server running locally and accepting > connections on Unix domain socket "/tmp/.s.PGSQL.5432"? > clusterdb: While clustering peter, the following failed: > $ > > This could probably handled a little more gracefully. Yes, sorry. A patch for this is attached. Please apply. Alvaro Herrera
2002-10-18Improve formatting of --help output.Peter Eisentraut
2002-10-18Un-break createlang build.Tom Lane
2002-10-18Update /contrib for "autocommit TO 'on'".Bruce Momjian
Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
2002-10-16Improve appearance of SET command.Bruce Momjian
2002-10-16Fix script to handle autocommit = 'off' by prepending autocommit 'on' toBruce Momjian
the start of the psql commandline. This is better than adding BEGIN/END because it handles multiple queries well, and allows the return code for psql to return the proper value.
2002-09-27> Fix clusterdb to be schema-awareBruce Momjian
Please apply the patch attached and this should be solved. Alvaro Herrera
2002-09-24Change default privileges for languages and functions to be PUBLIC USAGETom Lane
and PUBLIC EXECUTE, respectively. Per discussion about easing updates from prior versions.
2002-09-12> BTW, clusterdb is not schema-aware and will surely fail in any databaseBruce Momjian
> where more than one schema is in use, because it doesn't trouble to > schema-qualify table names. Ok, the following patch should solve this concern. It also tries to connect as little times as possible (the previous one would connect one time per table plus one per database; this one connects two times per database). Alvaro Herrera
2002-09-07Fix help output.Peter Eisentraut
2002-09-03Remove all traces of multibyte and locale options. Clean up commentsPeter Eisentraut
referring to "multibyte" where it really means character encoding.
2002-08-27I attach a little patch to make CLUSTER set and reset the indisclusteredBruce Momjian
bit on the indexes. I also attach clusterdb and clusterdb.sgml; both of them are blatant rips of vacuumdb and vacuumdb.sgml, but get the job done. Please review them, as I'm probably making a lot of mistakes with SGML and I can't compile it here. vacuumdb itself is not very comfortable to use when the databases have passwords, because it has to connect once for each table (I can probably make it connect only once for each database; should I?). Because of this I added a mention of PGPASSWORDFILE in the documentation, but I don't know if that is the correct place for that. Alvaro Herrera
2002-08-22Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane
with OPAQUE, as per recent pghackers discussion. I still want to do some more work on the 'cstring' pseudo-type, but I'm going to commit the bulk of the changes now before the tree starts shifting under me ...
2002-08-10Make sure all clients have the same understanding of default user namePeter Eisentraut
and database. In particular, make script wrappers understand the PGDATABASE environment variable.
2002-06-20Update copyright to 2002.Bruce Momjian
2002-06-11Allow createdb to create comments in current db, not template1.Bruce Momjian