1. 08 12月, 2000 7 次提交
  2. 07 12月, 2000 9 次提交
  3. 06 12月, 2000 5 次提交
    • T
      I've just seen what happens when the MEMORY_CONTEXT_CHECKING code fires · a0f86363
      Tom Lane 提交于
      an error at end of transaction ... and I did *not* like it.  Reduce ERROR
      to NOTICE so that this situation doesn't cause an infinite loop.
      a0f86363
    • T
      In SELECT FOR UPDATE, silently ignore null CTIDs, rather than generating · 614d951a
      Tom Lane 提交于
      an error as we used to.  In an OUTER JOIN scenario, retrieving a null
      CTID from one of the input relations is entirely expected.  We still
      want to lock the input rows from the other relations, so just ignore
      the null and keep going.
      614d951a
    • T
      From Stephan Szabo: · 981a7d32
      Tom Lane 提交于
      I believe this should fix the issue that Philip Warner
      noticed about the check for unique constraints meeting the
      referenced keys of a foreign key constraint allowing the
      specification of a subset of a foreign key instead of
      rejecting it.  I also added tests for a base case of
      this to the foreign key and alter table tests and patches
      for expected output.
      981a7d32
    • T
      Add regress test case for INSERT ... SELECT in rules. · 5ce8ab96
      Tom Lane 提交于
      5ce8ab96
    • T
      Repair breakage of rules containing INSERT ... SELECT actions, per bug · a51f004d
      Tom Lane 提交于
      report from Joel Burton.  Turns out that my simple idea of turning the
      SELECT into a subquery does not interact well *at all* with the way the
      rule rewriter works.  Really what we need to make INSERT ... SELECT work
      cleanly is to decouple targetlists from rangetables: an INSERT ... SELECT
      wants to have two levels of targetlist but only one rangetable.  No time
      for that for 7.1, however, so I've inserted some ugly hacks to make the
      rewriter know explicitly about the structure of INSERT ... SELECT queries.
      Ugh :-(
      a51f004d
  4. 04 12月, 2000 9 次提交
  5. 03 12月, 2000 10 次提交