- 10 Apr, 2002 1 commit
-
-
Peter Eisentraut authored
and --without-zlib to turn them off.
-
- 25 Oct, 2001 1 commit
-
-
Bruce Momjian authored
tests pass.
-
- 11 Sep, 2001 1 commit
-
-
Peter Eisentraut authored
-
- 27 Feb, 2001 1 commit
-
-
Tatsuo Ishii authored
-
- 10 Feb, 2001 1 commit
-
-
Tom Lane authored
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.
-
- 27 Nov, 2000 1 commit
-
-
Tom Lane authored
Avoid infinite loop prompting for password at stdin EOF.
-
- 12 Apr, 2000 1 commit
-
-
Bruce Momjian authored
-
- 20 Feb, 2000 2 commits
-
-
Peter Eisentraut authored
Improved psql's Ctrl-C handling Fixed configure test for sigsetjmp that now even recognizes it if it's a macro
-
Tom Lane authored
-
- 16 Feb, 2000 1 commit
-
-
Bruce Momjian authored
-
- 07 Feb, 2000 1 commit
-
-
Peter Eisentraut authored
Fixed libpq printing functions
-
- 29 Jan, 2000 1 commit
-
-
Peter Eisentraut authored
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
-
- 18 Jan, 2000 1 commit
-
-
Peter Eisentraut authored
-
- 14 Jan, 2000 1 commit
-
-
Peter Eisentraut authored
-
- 20 Dec, 1999 1 commit
-
-
Tom Lane authored
-
- 10 Dec, 1999 1 commit
-
-
Bruce Momjian authored
Also, minor tweakage of tab completion, and I hope the output is flushed on time now. -- Peter Eisentraut Sernanders väg 10:115
-
- 26 Nov, 1999 1 commit
-
-
Bruce Momjian authored
rate it's better than what used to be there. * Does proper SQL "host variable" substitution as pointed out by Andreas Zeugwetter (thanks): select * from :foo; Also some changes in how ':' and ';' are treated (escape with \ to send to backend). This does _not_ affect the '::' cast operator, but perhaps others that contain : or ; (but there are none right now). * To show description with a <something> listing, append '?' to command name, e.g., \df?. This seemed to be the convenient and logical solution. Or append a '+' to see more useless information, e.g., \df+. * Fixed fflush()'ing bug pointed out by Jan during the regression test discussion. * Added LastOid variable. This ought to take care of TODO item "Add a function to return the last inserted oid, for use in psql scripts" (under CLIENTS) E.g., insert into foo values(...); insert into bar values(..., :LastOid); \echo $LastOid * \d command shows constraints, rules, and triggers defined on the table (in addition to indices) * Various fixes, optimizations, corrections * Documentation update as well Note: This now requires snprintf(), which, if necessary, is taken from src/backend/port. This is certainly a little weird, but it should suffice until a source tree cleanup is done. Enjoy. -- Peter Eisentraut Sernanders väg 10:115
-
- 04 Nov, 1999 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-