1. 15 6月, 2004 1 次提交
  2. 14 6月, 2004 10 次提交
  3. 13 6月, 2004 2 次提交
  4. 12 6月, 2004 10 次提交
  5. 11 6月, 2004 17 次提交
    • B
      Another fix for Win32 START. · eae2a720
      Bruce Momjian 提交于
      eae2a720
    • B
      The attached tiny patch removes spurious carriage returns that might be · 1261fe18
      Bruce Momjian 提交于
      copied by the script that generates psql's help. (You can get the
      spurious CRs if you use a CVS client on Windows that does line end
      translation.)  Elsewhere, the patch should be totally benign.
      
      This removes quite a number of the compile warnings I posted the other
      day.
      
      Andrew Dunstan
      1261fe18
    • B
      >> It certainly doesn't. There still was a bug with the locale stuff, · 3a8cdf33
      Bruce Momjian 提交于
      >> though - the GUC variable was not set in the child
      >processes. So "show
      >> lc_collate" would *always* return "C", for example. attached
      >patch fixes
      >> this.
      >
      >Hm.  Why were these vars not propagated by the regular
      >mechanism for GUC
      >variables (write_nondefault_variables or whatever it's called)?  If the
      >problem is that it's not accepting PGC_INTERNAL values, then we need to
      >fix it there not here, because otherwise we'll have to pass all the
      >PGC_INTERNAL variables through the backend_variables file, which seems
      >like a recipe for more of the same sort of bug.
      
      
      Good point :-(
      
      I think the problem is not only that it specifically does not deal with
      PGC_INTERNAL variables. The problem is in the fact that
      write_nondefault_variables is called *before* the locale is read
      (because the locale is read from pg_control and not from any of the
      "usual" ways to read it).
      
      Attached patch is another stab at fixing it. It makes postmaster dump a
      new copy of the file once it has started the database (before it accepts
      any connections), which is when it will know about these parameters.
      Also updates the reading code to set the context to the one where the
      variable was originally set (PGC_POSTMASTER won't work for PGC_INTERNAL,
      and the other way around).
      
      We still pass lc_collate through the special file, because
      set_config_option on lc_collate will speficially *not* call setlocale(),
      and we need that call. But we no longer call set_config_option from
      there.
      
      Magnus Hagander
      3a8cdf33
    • B
      This patch updates pgpipe() on win32 to log exactly which part of the · a28d04e6
      Bruce Momjian 提交于
      call fails when it does. (As it is now, there is no way to figure out
      the point of error). Shouldn't be a problem since it's most defintily
      not a performance-critical path (only called on pgstat startup ATM).
      
      This should help us debug the pipe error message that's on the win32
      status page (which I myself have never been able to reproduce, and thus
      haven't figured out a better way to debug yet)
      
      Magnus Hagander
      a28d04e6
    • T
      When using extended-query protocol, postpone planning of unnamed statements · 7643bed5
      Tom Lane 提交于
      until Bind is received, so that actual parameter values are visible to the
      planner.  Make use of the parameter values for estimation purposes (but
      don't fold them into the actual plan).  This buys back most of the
      potential loss of plan quality that ensues from using out-of-line
      parameters instead of putting literal values right into the query text.
      
      This patch creates a notion of constant-folding expressions 'for
      estimation purposes only', in which case we can be more aggressive than
      the normal eval_const_expressions() logic can be.  Right now the only
      difference in behavior is inserting bound values for Params, but it will
      be interesting to look at other possibilities.  One that we've seen
      come up repeatedly is reducing now() and related functions to current
      values, so that queries like ... WHERE timestampcol > now() - '1 day'
      have some chance of being planned effectively.
      
      Oliver Jowett, with some kibitzing from Tom Lane.
      7643bed5
    • B
      5fe8c7d6
    • B
      Attached is a patch that takes care of the PATHSEP issue. I made a more · 6cc4175b
      Bruce Momjian 提交于
      extensive change then what was suggested. I found the file path.c that
      contained a lot of "Unix/Windows" agnostic functions so I added a function
      there instead and removed the PATHSEP declaration in exec.c altogether. All
      to keep things from scattering all over the code.
      
      I also took the liberty of changing the name of the functions
      "first_path_sep" and "last_path_sep". Where I come from (and I'm apparently
      not alone given the former macro name PATHSEP), they should be called
      "first_dir_sep" and "last_dir_sep". The new function I introduced, that
      actually finds path separators, is now the "first_path_sep". The patch
      contains changes on all affected places of course.
      
      I also changed the documentation on dynamic_library_path to reflect the
      chagnes.
      
      Thomas Hallgren
      6cc4175b
    • B
      More quoting cleanups for Win32's pg_ctl. · d4117de5
      Bruce Momjian 提交于
      d4117de5
    • T
      Adjust cost_nonsequential_access() to have more reasonable behavior · 3485cc3a
      Tom Lane 提交于
      when random_page_cost has a small value.  Per Manfred Koizar, though
      I didn't use his equation exactly.
      3485cc3a
    • B
      Done: · 387b38be
      Bruce Momjian 提交于
      > * -Print table names with constraint names in error messages, or make constraint
      387b38be
    • T
      36af1dd2
    • T
      Fix oversight in recent ALTER TABLE improvements. We now support · 6121aed8
      Tom Lane 提交于
      ALTER TABLE tab ADD COLUMN col SERIAL, but we forgot to install the
      dependency between the column and the sequence, so the sequence
      would not go away if you dropped the table later.
      6121aed8
    • B
    • T
      Clean up generation of default names for constraints, indexes, and serial · 45616f5b
      Tom Lane 提交于
      sequences, as per recent discussion.  All these names are now of the
      form table_column_type, with digits added if needed to make them unique.
      Default constraint names are chosen to be unique across their whole schema,
      not just within the parent object, so as to be more SQL-spec-compatible
      and make the information schema views more useful.
      45616f5b
    • B
    • B
      3a854af4
    • P
      Translation update · 6de9abc3
      Peter Eisentraut 提交于
      6de9abc3