1. 29 Feb, 2004 3 commits
  2. 28 Feb, 2004 5 commits
  3. 27 Feb, 2004 5 commits
  4. 26 Feb, 2004 2 commits
  5. 25 Feb, 2004 2 commits
  6. 24 Feb, 2004 8 commits
  7. 23 Feb, 2004 6 commits
  8. 22 Feb, 2004 2 commits
  9. 21 Feb, 2004 2 commits
  10. 20 Feb, 2004 4 commits
    • Bruce Momjian's avatar
      The following bug has been logged online: · 1d567aee
      Bruce Momjian authored
      Bug reference:      1081
      Logged by:          Aarjav Trivedi
      
      Email address:      aarjav@cc.gatech.edu
      
      PostgreSQL version: 7.4
      
      Operating system:   Linux
      
      Description:        Spelling error in tsearch2.sql leading to problems
      with
      tsearch
      
      Details:
      
      On line 620 of tsearch2.sql which is required to install and run
      TSEARCH,
      
      REATE FUNCTION tsstat_in(cstring)
      
      should be
      
      CREATE FUNCTION tsstat_in(cstring)
      
      because of this error, TSEARCH fails to work as specified,
      1d567aee
    • Bruce Momjian's avatar
      Add: · 0d025339
      Bruce Momjian authored
      > * Have psql show more information about sequences
      0d025339
    • Bruce Momjian's avatar
      Add: · e53c56d3
      Bruce Momjian authored
      > * Allow external interfaces to extend the GUC variable set
      e53c56d3
    • Bruce Momjian's avatar
      Add to PL/java description. · 5e4b9d1e
      Bruce Momjian authored
      5e4b9d1e
  11. 19 Feb, 2004 1 commit
    • Tom Lane's avatar
      Re-implement psql's input scanning to use a flex-generated lexer, as per · 4b39aa3a
      Tom Lane authored
      recent discussion.  The lexer is used for both SQL command text and
      backslash commands.  The purpose of this change is to make it easier to
      track the behavior of the backend's SQL lexer --- essentially identical
      flex rules are now used by psql.  Also, this cleans up a lot of very
      squirrelly code in mainloop.c and command.c.  The flex code is somewhat
      bulkier than the removed code, but should be lots easier to maintain.
      4b39aa3a