1. 05 6月, 2000 5 次提交
    • T
      Simplify build/install process for bki and description files. There's · c61db5ba
      Tom Lane 提交于
      no reason for them to be copied into src/backend rather than being
      installed straight from the catalog subdirectory.  This also avoids
      some peculiar behavior (bugs?) present in at least gmake 3.78.1: it
      won't always update the bki files in backend/ even when the ones in
      backend/catalog/ are newer.
      c61db5ba
    • T
      If user re-DECLAREs an existing cursor name, close the old cursor of · 4863829c
      Tom Lane 提交于
      that name and issue a NOTICE to the effect that we did.  Previously,
      code would try to assign the new cursor declaration to the old portal,
      but this didn't work reliably since new parsetree is still sitting in
      blank portal and is likely to get clobbered.
      4863829c
    • T
      Disallow CLOSE of reserved system portal names. · 9b5410aa
      Tom Lane 提交于
      9b5410aa
    • T
      Repair bug reported by ldm@apartia.com: Append nodes, which don't · 2190cf29
      Tom Lane 提交于
      actually use their targetlist, are given a targetlist that is just a
      pointer to the first appended plan's targetlist.  This is OK, but what
      is not OK is that any sub-select expressions in said tlist were being
      entered in the subPlan lists of both the Append and the first appended
      plan.  That led to two startup and two shutdown calls for the same
      plan node at exec time, which led to crashes.  Fix is to not generate
      a list of subPlans for an Append node.  Same problem and fix apply
      to other node types that don't have a real, functioning targetlist:
      Material, Sort, Unique, Hash.
      2190cf29
    • B
      Remove FROM warning by fixing query. · 54bce381
      Bruce Momjian 提交于
      54bce381
  2. 04 6月, 2000 2 次提交
  3. 03 6月, 2000 3 次提交
  4. 02 6月, 2000 8 次提交
  5. 01 6月, 2000 5 次提交
  6. 31 5月, 2000 5 次提交
  7. 30 5月, 2000 12 次提交