1. 16 Jan, 2003 2 commits
  2. 15 Jan, 2003 12 commits
  3. 14 Jan, 2003 8 commits
    • Peter Eisentraut's avatar
      Add sql_features table to information schema. Generate the features list · 2160c917
      Peter Eisentraut authored
      in the documentation from that same data.
      2160c917
    • Bruce Momjian's avatar
      Readd #include netinet/in.h for FreeBSD. · 1eddbd81
      Bruce Momjian authored
      1eddbd81
    • Peter Eisentraut's avatar
      Escape ampersand. · 97f0d0c8
      Peter Eisentraut authored
      97f0d0c8
    • Barry Lind's avatar
      Bumped up build number to 200 · 56e6436c
      Barry Lind authored
      56e6436c
    • Barry Lind's avatar
      Patch from Florian Wunderlich to correctly support java Timestamps. Previously · feefc329
      Barry Lind authored
      the code would only capture milliseconds where as both postgres and the java
      Timestamp object support greater resolution.
      Also fixed a bug reported by Rhett Sutphin where the last digit of the
      fractional seconds was lost when using timestamp without time zone
      
       Modified Files:
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
       	jdbc/org/postgresql/test/jdbc2/TimestampTest.java
      feefc329
    • Barry Lind's avatar
      Patch from Aaron Mulder to have pooled connections implement PGConnection · 9db065ba
      Barry Lind authored
       Modified Files:
       	jdbc/org/postgresql/jdbc2/optional/PooledConnectionImpl.java
       	jdbc/org/postgresql/test/jdbc2/optional/BaseDataSourceTest.java
      9db065ba
    • Barry Lind's avatar
      Patch from Kris Jurka to improve the performance of getImportedKeys(). · 88e52406
      Barry Lind authored
      Use explicit joins to avoid using the genetic query optimizer.  Also fixed
      a regression test that was failing to compile.  This change also cleans up
      how key names are reported as per:
      A change to the value of the FK_NAME column.  Currently the returned value
      is the triggers arguments which look like
      
      "<unnamed>\000t2\000t1\000UNSPECIFIED\000a\000a\000"
      
      This was required for server versions < 7.3 when a user did not supply
      constraint names.  Every constraint was named "<unnamed>"
      .  7.3 has enforced unique constraint names per table so unnamed foreign
      keys will have different names "$1", "$2" and so on.  I've used logic
      along the lines of the following to preserve the unique names in the
      original scheme, but allow people who go to the trouble of naming their
      constraints to see them:
      
      if (triggerargs.startsWith("<unnamed>")) {
      	fkname = [the whole ugly trigger args name originally used];
      } else {
      	fkname = [the actual fk name];
      }
      
       Modified Files:
       	jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
       	jdbc/org/postgresql/test/jdbc2/optional/ConnectionPoolTest.java
      88e52406
    • Bruce Momjian's avatar
      Add: · 956762a5
      Bruce Momjian authored
      > 	o Allow PL/PgSQL to support array element assignment
      956762a5
  4. 13 Jan, 2003 7 commits
  5. 12 Jan, 2003 10 commits
  6. 11 Jan, 2003 1 commit