1. 01 Jul, 2005 7 commits
  2. 30 Jun, 2005 9 commits
  3. 29 Jun, 2005 5 commits
  4. 28 Jun, 2005 7 commits
  5. 27 Jun, 2005 8 commits
    • Bruce Momjian's avatar
      Done: · 977530d8
      Bruce Momjian authored
      > * -Add concurrency to GIST
      977530d8
    • Teodor Sigaev's avatar
      Concurrency for GiST · e8cab5fe
      Teodor Sigaev authored
      - full concurrency for insert/update/select/vacuum:
              - select and vacuum never locks more than one page simultaneously
              - select (gettuple) hasn't any lock across it's calls
              - insert never locks more than two page simultaneously:
                      - during search of leaf to insert it locks only one page
                        simultaneously
                      - while walk upward to the root it locked only parent (may be
                        non-direct parent) and child. One of them X-lock, another may
                        be S- or X-lock
      - 'vacuum full' locks index
      - improve gistgetmulti
      - simplify XLOG records
      
      Fix bug in index_beginscan_internal: LockRelation may clean
        rd_aminfo structure, so move GET_REL_PROCEDURE after LockRelation
      e8cab5fe
    • Tom Lane's avatar
      Modify pg_dump to assume that a check constraint is inherited if its · c3be085a
      Tom Lane authored
      name matches the name of any parent-table constraint, without looking
      at the constraint text.  This is a not-very-bulletproof workaround for
      the problem exhibited by Berend Tober last month.  We really ought to
      record constraint inheritance status in pg_constraint, but it's looking
      like that may not get done for 8.1 --- and even if it does, we will
      need this kluge for dumping from older servers.
      c3be085a
    • Bruce Momjian's avatar
      Done: · fc722403
      Bruce Momjian authored
      > * -Remove kerberos4 from source tree
      fc722403
    • Neil Conway's avatar
      Remove support for Kerberos V4. It seems no one is using this, it has · a159ad30
      Neil Conway authored
      some security issues, and upstream has declared it "dead". Patch from
      Magnus Hagander, minor editorialization from Neil Conway.
      a159ad30
    • Bruce Momjian's avatar
      Done: · a051da02
      Bruce Momjian authored
      > 	o -Allow PL/pgSQL EXECUTE query_var INTO record_var;
      a051da02
    • Tom Lane's avatar
      Remove the << >> &< and &> operators for contrib/cube, which were · dcf2e1c8
      Tom Lane authored
      wrong, but nobody noticed because they were also useless.
      dcf2e1c8
    • Tom Lane's avatar
      Adjust contrib/seg &< and &> operators so that r-tree indexing logic · 54c80a34
      Tom Lane authored
      works properly for 1-D comparisons.  Fix some other errors such as
      bogus commutator specifications.
      54c80a34
  6. 26 Jun, 2005 4 commits