1. 11 6月, 1999 4 次提交
  2. 10 6月, 1999 2 次提交
    • V
      1. Fix for elog(ERROR, "EvalPlanQual: t_xmin is uncommitted ?!") · 78f7ccc9
      Vadim B. Mikheev 提交于
         and possibly for other cases too:
      
         DO NOT cache status of transaction in unknown state
         (i.e. non-committed and non-aborted ones)
      
         Example:
         T1 reads row updated/inserted by running T2 and cache T2 status.
         T2 commits.
         Now T1 reads a row updated by T2 and with HEAP_XMAX_COMMITTED
         in t_infomask (so cached T2 status is not changed).
         Now T1 EvalPlanQual gets updated row version without HEAP_XMIN_COMMITTED
         -> TransactionIdDidCommit(t_xmin) and TransactionIdDidAbort(t_xmin)
         return FALSE and T2 decides that t_xmin is not committed and gets
         ERROR above.
      
         It's too late to find more smart way to handle such cases and so
         I just changed xact status caching and got rid TransactionIdFlushCache()
         from code.
      
         Changed: transam.c, xact.c, lmgr.c and transam.h - last three
         just because of TransactionIdFlushCache() is removed.
      
      2. heapam.c:
      
         T1 marked a row for update. T2 waits for T1 commit/abort.
         T1 commits. T3 updates the row before T2 locks row page.
         Now T2 sees that new row t_xmax is different from xact id (T1)
         T2 was waiting for. Old code did Assert here. New one goes to
         HeapTupleSatisfiesUpdate. Obvious changes too.
      
      3. Added Assert to vacuum.c
      4. bufmgr.c: break
         Assert(buf->r_locks == 0 && !buf->ri_lock)
         into two Asserts.
      78f7ccc9
    • T
      Fix errors in SELECT ... GROUP BY ... UNION SELECT ... · c37ecaf8
      Tom Lane 提交于
      ye proverbial one-line patch (not counting five lines of comment so's
      maybe it won't happen again)
      c37ecaf8
  3. 09 6月, 1999 11 次提交
  4. 08 6月, 1999 4 次提交
  5. 07 6月, 1999 9 次提交
  6. 06 6月, 1999 7 次提交
  7. 05 6月, 1999 3 次提交
    • T
      a fix for Win32 support provided by yutaka@marin.or.jp. · 7e6a9a60
      Tatsuo Ishii 提交于
      	The patch will avoid to add .exe suffix to the pg_encoding
      	binary.
      7e6a9a60
    • M
      · 93b57eb5
      Marc G. Fournier 提交于
      trace.patch (compilation error)
      
              the gettimeofday doesn't compile under Linux with glibc2 because
              the DST_NONE constant is no more defined. It seems that this code
              (written by me) has always be wrong but for some reason working.
      
      From: Massimo Dal Zotto <dz@cs.unitn.it>
      93b57eb5
    • M
      · dbaab4a4
      Marc G. Fournier 提交于
      man.patch (make inconsistency)
      
              the default target is 'install' instead of 'all'. So if you do a
              make without target you actually do a make install, which is not
              what one normally expects from a standard makefile.
      
      From: Massimo Dal Zotto <dz@cs.unitn.it>
      dbaab4a4