- 12 Mar, 1997 1 commit
-
-
Marc G. Fournier authored
Subject: [HACKERS] password authentication This patch adds support for plaintext password authentication. To use it, you add a line like host all 0.0.0.0 0.0.0.0 password pg_pwd.conf to your pg_hba.conf, where 'pg_pwd.conf' is the name of a file containing the usernames and password hashes in the format of the first two fields of a Unix /etc/passwd file. (Of course, you can use a specific database name or IP instead.) Then, to connect with a password through libpq, you use the PQconnectdb() function, specifying the "password=" tag in the connect string and also adding the tag "authtype=password". I also added a command-line switch '-u' to psql that tells it to prompt for a username and password and use password authentication.
-
- 13 Feb, 1997 1 commit
-
-
Marc G. Fournier authored
Replaced NEED_STRDUP by !HAVE_STRDUP
-
- 11 Feb, 1997 1 commit
-
-
Bruce Momjian authored
-
- 26 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
-
- 25 Jan, 1997 5 commits
-
-
Marc G. Fournier authored
be #ifdef'd into psql.c itself From what I can tell, if USE_READLINE is true or false, psql works under FreeBSD, without configure. Now to test it *again* under sparc_solaris with configure and see if it works...
-
Marc G. Fournier authored
Added a README.readline file until configure is integrated to *try* and explain the way things stand. Removed a stray configure .in file
-
Marc G. Fournier authored
Add some code to make psql happy with a system where there is *no* history code available, but there is readline code...
-
Marc G. Fournier authored
history.h doesn't...previously, it was assumed that both existed, or didn't exist...but this assumption fails on the one sparc_solaris box that I have access to, and could exist in other circumstances
-
Marc G. Fournier authored
See message to hackers@ mailing list concerning this...
-
- 13 Jan, 1997 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 10 Jan, 1997 1 commit
-
-
Bruce Momjian authored
Here is a trivial patch to get back the 1.09 behavior; it just removes trailing newlines before printing the line out with a newline rather than after... Thomas Lockhart
-
- 05 Jan, 1997 1 commit
-
-
Marc G. Fournier authored
This corrects the newline handling when using the readline library. Submitted by: "Martin J. Laubach" <mjl@wwx.vip.at>
-
- 02 Jan, 1997 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 28 Dec, 1996 1 commit
-
-
Bruce Momjian authored
gmake of the code without interruption. There's also some tidy-up of the MAXPATHLEN stuff based on the assumption that all supported platforms have MAXPATHLEN defined in <sys/param.h>. (The only unknowns for the above are AIX and IRIX5.)
-
- 26 Dec, 1996 3 commits
-
-
Bruce Momjian authored
-
Bryan Henderson authored
-
Bruce Momjian authored
database changes. To fix, apply the following patch:- Keith Parks.
-
- 14 Dec, 1996 1 commit
-
-
Vadim B. Mikheev authored
^ - deleted free(settings->opt.fieldSep);
-
- 11 Dec, 1996 1 commit
-
-
Bruce Momjian authored
-
- 01 Dec, 1996 1 commit
-
-
Bruce Momjian authored
-
- 30 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 26 Nov, 1996 2 commits
-
-
Bryan Henderson authored
-
Bryan Henderson authored
-
- 24 Nov, 1996 1 commit
-
-
Bryan Henderson authored
-
- 22 Nov, 1996 2 commits
-
-
Bruce Momjian authored
-
Bryan Henderson authored
-
- 20 Nov, 1996 1 commit
-
-
Bruce Momjian authored
been freed.
-
- 14 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 11 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 10 Nov, 1996 1 commit
-
-
Bruce Momjian authored
-
- 08 Nov, 1996 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 04 Nov, 1996 1 commit
-
-
Bryan Henderson authored
-
- 14 Oct, 1996 1 commit
-
-
Bruce Momjian authored
distinguish between char and char(1).
-
- 09 Oct, 1996 1 commit
-
-
Bruce Momjian authored
No more scrolling off the screen.
-
- 16 Sep, 1996 1 commit
-
-
Marc G. Fournier authored
all the calls with strdup. Submitted by: darcy@druid.druid.com (D'Arcy J.M. Cain)
-
- 21 Aug, 1996 1 commit
-
-
Julian Assange authored
-
- 14 Aug, 1996 1 commit
-
-
Marc G. Fournier authored
pg_dump and load to 2.0. I haven't gotten any feedback on whether people want it, so I am submitting it for others to decide. I would recommend an install in 1.02.1. I had said that the 2.0 pg_dump could dump a 1.02.1 database, but I was wrong. The copy is actually performed by the backend, and the 2.0 database will not be able to read 1.02.1 databases because of the new system columns. This patch does several things. It copies nulls out as \N, so they can be distinguished from '' strings. It fixes a problem where backslashes in the input stream were not output as double-backslashes. Without this patch, backslashes copied out were deleted upon input, or interpreted as special characters. Third, input is now terminated by backslash-period. This can not be part of a normal input stream. I tested this by creating a database with all sorts of nulls, backslash, and period fields and dumped the database and reloaded into a new database and compared them. Submitted by: Bruce
-