]> granicus.if.org Git - postgresql/commit
* Includes tab completion. It's not magic, but it's very cool. At any
authorBruce Momjian <bruce@momjian.us>
Fri, 26 Nov 1999 04:24:17 +0000 (04:24 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 26 Nov 1999 04:24:17 +0000 (04:24 +0000)
commit78bc83fedf7f865534c61dd14067fc80d580ed29
tree48a574c438d31fa6bd28ec87a7f3d413e901bb8f
parentc83b4d1cd8afc557b1efad71e3bf99b81c27e57a
* Includes tab completion. It's not magic, but it's very cool. At any
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
22 files changed:
doc/src/sgml/ref/psql-ref.sgml
src/bin/psql/Makefile.in
src/bin/psql/command.c
src/bin/psql/command.h
src/bin/psql/common.c
src/bin/psql/describe.c
src/bin/psql/describe.h
src/bin/psql/help.c
src/bin/psql/input.c
src/bin/psql/input.h
src/bin/psql/large_obj.c
src/bin/psql/large_obj.h
src/bin/psql/mainloop.c
src/bin/psql/print.c
src/bin/psql/print.h
src/bin/psql/prompt.c
src/bin/psql/settings.h
src/bin/psql/startup.c
src/bin/psql/tab-complete.c [new file with mode: 0644]
src/bin/psql/tab-complete.h [new file with mode: 0644]
src/bin/psql/variables.h
src/bin/psql/win32.mak-old