1. 03 Dec, 2005 3 commits
    • Bruce Momjian's avatar
      Allow to_char(interval) and to_char(time) to use AM/PM specifications. · d20901a3
      Bruce Momjian authored
      Map them to a single day, so '30 hours' is 'AM'.
      
      Have to_char(interval) and to_char(time) use "HH", "HH12" as 12-hour
      intervals, rather than bypass and print the full interval hours.  This
      is neeeded because to_char(time) is mapped to interval in this function.
      Intervals should use "HH24", and document suggestion.
      
      Allow "D" format specifiers for interval/time.
      d20901a3
    • Bruce Momjian's avatar
      Item removed: · eb339c78
      Bruce Momjian authored
      < * Add function to return the thread safety status of libpq and ecpg
      eb339c78
    • Tom Lane's avatar
      Tweak indexscan machinery to avoid taking an AccessShareLock on an index · a98871b7
      Tom Lane authored
      if we already have a stronger lock due to the index's table being the
      update target table of the query.  Same optimization I applied earlier
      at the table level.  There doesn't seem to be much interest in the more
      radical idea of not locking indexes at all, so do what we can ...
      a98871b7
  2. 02 Dec, 2005 8 commits
  3. 01 Dec, 2005 11 commits
  4. 30 Nov, 2005 3 commits
  5. 29 Nov, 2005 4 commits
  6. 28 Nov, 2005 10 commits
  7. 27 Nov, 2005 1 commit
    • Tom Lane's avatar
      Teach predtest.c how to reason about ScalarArrayOpExpr clauses as though · 8a9acd3c
      Tom Lane authored
      they were broken-out AND or OR lists.  The least grotty way to do this
      seemed to be to set up a general mechanism for handling nodes as though
      they were ANDs or ORs.  There's no other immediate use for it, but perhaps
      we might want to use the mechanism someday for things like BETWEEN
      SYMMETRIC.
      8a9acd3c