1. 22 Nov, 2002 1 commit
  2. 21 Nov, 2002 10 commits
  3. 20 Nov, 2002 3 commits
    • Bruce Momjian's avatar
      Update ports list. · 2676e11f
      Bruce Momjian authored
      2676e11f
    • Barry Lind's avatar
      Fix a dumb cut and paste error from my last commit and update some of the · 1b80e012
      Barry Lind authored
      jdbc3 metadata responses
      
       Modified Files:
       	jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
       	jdbc/org/postgresql/jdbc3/AbstractJdbc3DatabaseMetaData.java
      1b80e012
    • Barry Lind's avatar
      Fixed bug reported by Marko Strukelj and Keith Wannamaker. Using executeBatch · 54bc3b6b
      Barry Lind authored
      on a preparedStatement would reset the prepared statment causing subsequent
      uses of the preparedStatement to fail (i.e. the following series of calls
      would fail: addBatch() executeBatch() addBatch() executBatch()).  This is
      a regression from 7.2 where this worked correctly.  The regression test has
      also been modified to explicitly test for this case.
      
       Modified Files:
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
       	jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
       	jdbc/org/postgresql/test/jdbc2/BatchExecuteTest.java
      54bc3b6b
  4. 19 Nov, 2002 6 commits
  5. 18 Nov, 2002 6 commits
  6. 17 Nov, 2002 3 commits
  7. 16 Nov, 2002 1 commit
  8. 15 Nov, 2002 10 commits
    • Tom Lane's avatar
      Add relcache support for system catalogs with attnotnull columns. · 24b130cb
      Tom Lane authored
      The code was not making TupleConstr structs for such catalogs in
      several places; with the consequence that the not-null constraint
      wasn't actually enforced.  With this change,
      INSERT INTO pg_proc VALUES('sdf');
      generates a 'Fail to add null value' error instead of a core dump.
      24b130cb
    • Michael Meskes's avatar
      Synced parser. · 4bc3598a
      Michael Meskes authored
      4bc3598a
    • Bruce Momjian's avatar
      SGML markup fixes. · 9249bdaa
      Bruce Momjian authored
      9249bdaa
    • Bruce Momjian's avatar
      SGML improvements. · da814903
      Bruce Momjian authored
      Neil Conway
      da814903
    • Bruce Momjian's avatar
      New version attached. The following is implemented: · 8bc717cb
      Bruce Momjian authored
      - CLUSTER ALL clusters all the tables that have some index with
        indisclustered set and the calling user owns.
      - CLUSTER tablename clusters the named table, using the index with
        indisclustered set.  If no index has the bit set, throws elog(ERROR).
      - The multi-relation version (CLUSTER ALL) uses a multitransaction
        approach, similar to what VACUUM does.
      
      Alvaro Herrera
      8bc717cb
    • Bruce Momjian's avatar
      Clean up psql: · 5b7eb4dd
      Bruce Momjian authored
      Add simple ALTER DATABASE, ALTER TRIGGER, CHECK POINT, CREATE
      CONVERSION, CREATE DOMAIN, CREATE LANGUAGE, DEALLOCATE, DROP CONVERSION,
      DROP DOMAIN, DROP LANGUAGE, EXECUTE, PREPARE
      
      Complete CAST in CREATE CAST and DROP CAST but doesn't suggest what
      should follow.
      
      Add many more SET / SHOW variables to the list.  Taken from SHOW ALL
      output.
      
      Complete a case sensitive search to allow \dD, \dd, \dS, \ds, \h, \H to
      complete properly.  But there are no matches, then try a case
      insensitive search to allow case conversion.  Add all missing help
      options.
      
      \Q<tab>    -> \q
      \dD<tab>   -> \dD
      \dd<tab>   -> \dd
      \D<tab><tab><tab> -> \d (with listing of \d? commands)
      sel<tab>   -> SELECT
      
      Rod Taylor
      5b7eb4dd
    • Bruce Momjian's avatar
      OpenSSL 0.9.6g in Debian/unstable stopped working with pgcrypto. This · 728fa75e
      Bruce Momjian authored
      is pgcrypto bug as it assumed too much about inner workings of OpenSSL.
      
      Following patch stops pgcrypto using EVP* functions for ciphers and lets
      it manage ciphers itself.
      
      This patch supports Blowfish, DES and CAST5 algorithms.
      
      Marko Kreen
      728fa75e
    • Bruce Momjian's avatar
      pg_dump for domain constraints. · 93e54678
      Bruce Momjian authored
      Rod Taylor
      93e54678
    • Bruce Momjian's avatar
      Add DOMAIN check constraints. · 6b603e67
      Bruce Momjian authored
      Rod Taylor
      6b603e67
    • Bruce Momjian's avatar
      2986aa6a