Skip to content
Snippets Groups Projects
  1. Sep 01, 2002
    • Tom Lane's avatar
      Mark the float8 -> int8 cast as implicit. This resolves the problem · 3c49c4b1
      Tom Lane authored
      pointed out by Barry Lind: UPDATE bigintcol = 10000000000 fails because
      the constant is initially taken as float8.  We really need a better way,
      but it's not gonna happen for 7.3.
      
      Also, remove int4reltime() function, which is redundant with the
      existing binary-compatibility coercion path from int4 to reltime,
      and probably has been unreachable code for a long while.
      3c49c4b1
    • Tom Lane's avatar
      Code review for domain-constraints patch. Use a new ConstraintTest node · 845a6c3a
      Tom Lane authored
      type for runtime constraint checks, instead of misusing the parse-time
      Constraint node for the purpose.  Fix some damage introduced into type
      coercion logic; in particular ensure that a coerced expression tree will
      read out the correct result type when inspected (patch had broken some
      RelabelType cases).  Enforce domain NOT NULL constraints against columns
      that are omitted from an INSERT.
      845a6c3a
  2. Aug 31, 2002
  3. Aug 30, 2002
  4. Aug 29, 2002
    • Bruce Momjian's avatar
      Prevent problem with extra-long password packets from allocating lots of · f81ce4a0
      Bruce Momjian authored
      memory.
      
      Neil Conway
      f81ce4a0
    • Bruce Momjian's avatar
      This patch reserves the last superuser_reserved_connections slots for · 626eca69
      Bruce Momjian authored
      connections by the superuser only.
      
      This patch replaces the last patch I sent a couple of days ago.
      
      It closes a connection that has not been authorised by a superuser if it would
      leave less than the GUC variable ReservedBackends
      (superuser_reserved_connections in postgres.conf) backend process slots free
      in the SISeg. This differs to the first patch which only reserved the last
      ReservedBackends slots in the procState array. This has made the free slot
      test more expensive due to the use of a lock.
      
      After thinking about a comment on the first patch I've also made it a fatal
      error if the number of reserved slots is not less than the maximum number of
      connections.
      
      Nigel J. Andrews
      626eca69
    • Bruce Momjian's avatar
      · 1761990e
      Bruce Momjian authored
      please apply small patch for README.tsearch.
      
      I've documented space usage and using CLUSTER command
      
      Oleg Bartunov
      1761990e
    • Bruce Momjian's avatar
      The unit for statement_timeout is s/1000, not s/1000000 · 31fbdad6
      Bruce Momjian authored
      Manfred Koizar
      31fbdad6
Loading