1. 19 Jun, 2004 2 commits
  2. 18 Jun, 2004 6 commits
  3. 17 Jun, 2004 2 commits
  4. 16 Jun, 2004 3 commits
    • Bruce Momjian's avatar
      Improve comment. · 1d2dbf07
      Bruce Momjian authored
      1d2dbf07
    • Bruce Momjian's avatar
      Do PGAC_FUNC_GETPWUID_R_5ARG and PGAC_FUNC_STRERROR_R_INT tests with the · e854bc4a
      Bruce Momjian authored
      same thread flags that will be used to compile thread.c.  Add comment to
      make sure no one breaks it.
      e854bc4a
    • Tom Lane's avatar
      Represent type-specific length coercion functions as pg_cast entries, · d70a42e6
      Tom Lane authored
      eliminating the former hard-wired convention about their names.  Allow
      pg_cast entries to represent both type coercion and length coercion in
      a single step --- this is represented by a function that takes an
      extra typmod argument, just like a length coercion function.  This
      nicely merges the type and length coercion mechanisms into something
      at least a little cleaner than we had before.  Make use of the single-
      coercion-step behavior to fix integer-to-bit coercion so that coercing
      to bit(n) yields the rightmost n bits of the integer instead of the
      leftmost n bits.  This should fix recurrent complaints about the odd
      behavior of this coercion.  Clean up the documentation of the bit string
      functions, and try to put it where people might actually find it.
      Also, get rid of the unreliable heuristics in ruleutils.c about whether
      to display nested coercion steps; instead require parse_coerce.c to
      label them properly in the first place.
      d70a42e6
  5. 14 Jun, 2004 5 commits
  6. 13 Jun, 2004 7 commits
  7. 12 Jun, 2004 6 commits
  8. 11 Jun, 2004 9 commits
    • Bruce Momjian's avatar
      ECPG preprocessor for PostgreSQL 7.4.1, 7.4.2 doubles const, · eebad1a7
      Bruce Momjian authored
      volatile, static, and register keywords before variables,
      declared as VARCHAR.
      
      Sergey N. Yatskevich
      eebad1a7
    • Tom Lane's avatar
      StrategyDirtyBufferList wasn't being careful to honor max_buffers limit. · bbf0ebad
      Tom Lane authored
      Bug is only latent given that sole caller is passing NBuffers, but it
      could bite someone in the rear someday.
      bbf0ebad
    • Bruce Momjian's avatar
      2597056c
    • Tom Lane's avatar
      Add some code to Assert that when we release pin on a buffer, we are · e6cba715
      Tom Lane authored
      not holding the buffer's cntx_lock or io_in_progress_lock.  A recent
      report from Litao Wu makes me wonder whether it is ever possible for
      us to drop a buffer and forget to release its cntx_lock.  The Assert
      does not fire in the regression tests, but that proves little ...
      e6cba715
    • Bruce Momjian's avatar
      Cleanup use of Win32 START by using "" for title. No need for temp · 8d64b562
      Bruce Momjian authored
      batch files anymore.
      8d64b562
    • Bruce Momjian's avatar
      Add URL about Win32 quoting behavior. · 800910fe
      Bruce Momjian authored
      800910fe
    • Bruce Momjian's avatar
      Another fix for Win32 START. · eae2a720
      Bruce Momjian authored
      eae2a720
    • Bruce Momjian's avatar
      The attached tiny patch removes spurious carriage returns that might be · 1261fe18
      Bruce Momjian authored
      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
    • Bruce Momjian's avatar
      >> It certainly doesn't. There still was a bug with the locale stuff, · 3a8cdf33
      Bruce Momjian authored
      >> 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