Skip to content
Snippets Groups Projects
  1. Nov 26, 1999
    • Bruce Momjian's avatar
      * Includes tab completion. It's not magic, but it's very cool. At any · 78bc83fe
      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
      78bc83fe
  2. Nov 23, 1999
  3. Nov 22, 1999
  4. Nov 11, 1999
  5. Nov 05, 1999
  6. Nov 04, 1999
  7. Nov 01, 1999
  8. Oct 30, 1999
  9. Oct 26, 1999
  10. Oct 15, 1999
  11. Oct 14, 1999
  12. Oct 13, 1999
  13. Oct 12, 1999
  14. Oct 09, 1999
  15. Oct 08, 1999
  16. Oct 07, 1999
  17. Oct 05, 1999
  18. Oct 04, 1999
  19. Oct 02, 1999
  20. Oct 01, 1999
Loading