aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/help.c
Commit message (Collapse)AuthorAge
...
* Fix include files for new PageOutput call.Bruce Momjian2002-10-24
|
* Page \h output and centralize psql paging code in PageOutput().Bruce Momjian2002-10-23
|
* Improve formatting of --help output.Peter Eisentraut2002-10-18
|
* Translation updates, some messages tweaked.Peter Eisentraut2002-09-22
|
* pgindent run.Bruce Momjian2002-09-04
|
* Add '+' mention in \? help. More clean of \? to do.Bruce Momjian2002-08-27
|
* psql prints its version number in its startup message, per recentTom Lane2002-08-10
| | | | | discussion. Also, cause the \timing command to display time in a format consistent with the backend's EXPLAIN ANALYZE output.
* Make sure all clients have the same understanding of default user namePeter Eisentraut2002-08-10
| | | | | and database. In particular, make script wrappers understand the PGDATABASE environment variable.
* Fix \? and \pset pager handling. \? wasn't honoring pager before.Bruce Momjian2002-07-15
|
* Update copyright to 2002.Bruce Momjian2002-06-20
|
* psql \? cleanups by Ian BarwickBruce Momjian2002-03-19
|
* Add psql \dD listing of domains, from Jonathan Eisler.Bruce Momjian2002-03-19
|
* More pgsql \? cleanup for Peter E.Bruce Momjian2002-03-11
|
* Correct optional args in psql \? as pointed out by Ian Barwick.Bruce Momjian2002-03-11
|
* Back out psql domain improvements until domain is applied.Bruce Momjian2002-03-07
|
* Here is a diff of changes to the psql source code implementing a simpleBruce Momjian2002-03-06
| | | | | | | 'list domains' command '\dD'. This is the interface component of rbt@zort.ca's domain backend modifications. Jonathan Eisler
* Adds \du documentation line for \? in psqls help.cBruce Momjian2002-03-05
| | | | | | | Thought I saw a patch earlier converting docs to use []s, so this uses them. Rod Taylor
* Add \timing patch to psql. Times all queries.Bruce Momjian2002-03-05
| | | | Greg Sabino Mullane
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-25
| | | | tests pass.
* Add French psql translation. (My rendition of French anyway...)Peter Eisentraut2001-06-11
| | | | Fix typo in message.
* Finish German translation, edit (original) messages a bit.Peter Eisentraut2001-06-08
|
* Native Language Support (NLS)Peter Eisentraut2001-06-02
| | | | | | | | | | | Use --enable-nls to turn it on; see installation instructions for details. See developer's guide how to make use of it in programs and how to add translations. psql sources have been almost fully prepared and an incomplete German translation has been provided. In the backend, only elog() calls are currently translatable, and the provided German translation file is more of a placeholder.
* Add \cd command to psql.Peter Eisentraut2001-05-07
|
* pgindent run. Make it all clean.Bruce Momjian2001-03-22
|
* Restructure the key include files per recent pghackers discussion: thereTom Lane2001-02-10
| | | | | | | | | | | are now separate files "postgres.h" and "postgres_fe.h", which are meant to be the primary include files for backend .c files and frontend .c files respectively. By default, only include files meant for frontend use are installed into the installation include directory. There is a new make target 'make install-all-headers' that adds the whole content of the src/include tree to the installed fileset, for use by people who want to develop server-side code without keeping the complete source tree on hand. Cleaned up a whole lot of crufty and inconsistent header inclusions.
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-24
|
* Remove -k unix socketpath option from client side, allow hostname withBruce Momjian2000-11-13
| | | | leading slash to behave as a unix socket path.
* UUNET is looking into offering PostgreSQL as a part of a managed webBruce Momjian2000-11-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hosting product, on both shared and dedicated machines. We currently offer Oracle and MySQL, and it would be a nice middle-ground. However, as shipped, PostgreSQL lacks the following features we need that MySQL has: 1. The ability to listen only on a particular IP address. Each hosting customer has their own IP address, on which all of their servers (http, ftp, real media, etc.) run. 2. The ability to place the Unix-domain socket in a mode 700 directory. This allows us to automatically create an empty database, with an empty DBA password, for new or upgrading customers without having to interactively set a DBA password and communicate it to (or from) the customer. This in turn cuts down our install and upgrade times. 3. The ability to connect to the Unix-domain socket from within a change-rooted environment. We run CGI programs chrooted to the user's home directory, which is another reason why we need to be able to specify where the Unix-domain socket is, instead of /tmp. 4. The ability to, if run as root, open a pid file in /var/run as root, and then setuid to the desired user. (mysqld -u can almost do this; I had to patch it, too). The patch below fixes problem 1-3. I plan to address #4, also, but haven't done so yet. These diffs are big enough that they should give the PG development team something to think about in the meantime :-) Also, I'm about to leave for 2 weeks' vacation, so I thought I'd get out what I have, which works (for the problems it tackles), now. With these changes, we can set up and run PostgreSQL with scripts the same way we can with apache or proftpd or mysql. In summary, this patch makes the following enhancements: 1. Adds an environment variable PGUNIXSOCKET, analogous to MYSQL_UNIX_PORT, and command line options -k --unix-socket to the relevant programs. 2. Adds a -h option to postmaster to set the hostname or IP address to listen on instead of the default INADDR_ANY. 3. Extends some library interfaces to support the above. 4. Fixes a few memory leaks in PQconnectdb(). The default behavior is unchanged from stock 7.0.2; if you don't use any of these new features, they don't change the operation. David J. MacKenzie
* Don't free() the result of getpwuid().Peter Eisentraut2000-09-22
| | | | Discovered by Jason Tishler <Jason.Tishler@dothill.com>.
* Fix \h SELECT to not show SELECT INTO.Bruce Momjian2000-05-26
|
* /home/peter/commit-msgPeter Eisentraut2000-05-12
|
* More psql help cleanupBruce Momjian2000-05-11
|
* Add options and cleanup psql \? and -? help displaysBruce Momjian2000-05-11
|
* Update psql \? to show file rather than "fname".Bruce Momjian2000-05-09
|
* Fix \h to not go past array boundsBruce Momjian2000-04-24
|
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-12
|
* Added configure test for readline's filename_completion_functionPeter Eisentraut2000-03-05
| | | | Completed psql's \? help
* More fixes for psql ^C handling, especially during copy. Still doesn'tPeter Eisentraut2000-03-01
| | | | | | cope so well with copy to but that will have to wait for the next release. Also added -X option to prevent reading .psqlrc startup file.
* Moved psql \eset and \eshow to \encodingPeter Eisentraut2000-02-20
| | | | | Improved psql's Ctrl-C handling Fixed configure test for sigsetjmp that now even recognizes it if it's a macro
* Fix missing \n in some psql_error calls.Tom Lane2000-02-20
|
* Add new backslash command \eset and \eshow.Tatsuo Ishii2000-02-19
|
* Clean up include files use in psql.Bruce Momjian2000-02-16
|
* Adjusted psql echoing options (-a and -e)Peter Eisentraut2000-02-13
|
* Default argument for createdbPeter Eisentraut2000-02-10
| | | | Changed EXIT_ON_ERROR to ON_ERROR_STOP in psql
* Fixed psql double quoting of SQL idsPeter Eisentraut2000-02-07
| | | | Fixed libpq printing functions
* A few minor psql enhancementsPeter Eisentraut2000-01-29
| | | | | | | Initdb help correction Changed end/abort to commit/rollback and changed related notices Commented out way old printing functions in libpq Fixed a typo in alter table / alter column
* Update files.Bruce Momjian2000-01-26
|
* Add:Bruce Momjian2000-01-26
| | | | | | * Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
* another round of user interface cleanupsPeter Eisentraut2000-01-19
| | | | | removed pg_id fixed a few bugs in the scripts
* another set of cleanupsPeter Eisentraut2000-01-18
|