1. 08 4月, 2000 4 次提交
  2. 07 4月, 2000 9 次提交
  3. 06 4月, 2000 3 次提交
  4. 05 4月, 2000 11 次提交
  5. 04 4月, 2000 11 次提交
    • B
      No ID file needed. · 0d26b456
      Bruce Momjian 提交于
      0d26b456
    • B
      Update QNX FAQ · 9e7a4ccf
      Bruce Momjian 提交于
      9e7a4ccf
    • T
      Add a check to pg_dump to see whether backend is same version as pg_dump. · c84ba663
      Tom Lane 提交于
      If not, abort by default.  Abort can be prevented by using -i or
      --ignore-version switch.
      c84ba663
    • B
      Update regression for bsdi. · edd4131e
      Bruce Momjian 提交于
      edd4131e
    • T
      Correct off-by-one error in strncat() usage. · 3f94bc19
      Tom Lane 提交于
      3f94bc19
    • T
      When rewriting an aggregate introduced into WHERE, allow agg argument to · 7fbf0af2
      Tom Lane 提交于
      be an expression not just a simple Var, so long as only one table is
      referenced (so that code isn't really any more difficult than before).
      This whole thing is still fundamentally bogus, but at least we can accept
      a few more cases than before.
      7fbf0af2
    • T
      For no good reason at all, libplpgsql was getting linked with libpq. · 2ae6e863
      Tom Lane 提交于
      Since plpgsql is a backend extension, it doesn't need libpq...
      2ae6e863
    • T
      Fix extremely nasty little bug observed when a sub-SELECT appears in · 1c72a8a3
      Tom Lane 提交于
      WHERE in a place where it can be part of a nestloop inner indexqual.
      As the code stood, it put the same physical sub-Plan node into both
      indxqual and indxqualorig of the IndexScan plan node.  That confused
      later processing in the optimizer (which expected that tracing the
      subPlan list would visit each subplan node exactly once), and would
      probably have blown up in the executor if the planner hadn't choked first.
      Fix by making the 'fixed' indexqual be a complete deep copy of the
      original indexqual, rather than trying to share nodes below the topmost
      operator node.  This had further ramifications though, because we were
      making the aforesaid list of sub-Plan nodes during SS_process_sublinks
      which is run before construction of the 'fixed' indexqual, meaning that
      the copy of the sub-Plan didn't show up in that list.  Fix by rearranging
      logic so that the sub-Plan list is built by the final set_plan_references
      pass, not in SS_process_sublinks.  This may sound like a mess, but it's
      actually a good deal cleaner now than it was before, because we are no
      longer dependent on the assumption that planning will never make a copy
      of a sub-Plan node.
      1c72a8a3
    • T
      Augment the function call map logic with code from Tom Lane. · 8cdabf07
      Thomas G. Lockhart 提交于
       Should be more robust to overflows.
       Pass through an unmapped function unchanged, rather than rejecting it.
      Add a few more functions, but comment out those which can go through as-is.
      Can be used with contrib/odbc/ package, though that isn't committed yet.
      8cdabf07
    • B
      Hi, · 51cfdae5
      Bruce Momjian 提交于
          here is an updated version of the bit type with a bugfix and all the necessa
      ry
      SQL functions defined. This should replace what is currently in contrib. I'd
      appreciate any comments on what is there.
      
      Kind regards,
      
      Adriaan
      51cfdae5
    • M
      *** empty log message *** · 5454b379
      Michael Meskes 提交于
      5454b379
  6. 03 4月, 2000 2 次提交