Skip to content
Snippets Groups Projects
  1. Sep 08, 2011
  2. Sep 07, 2011
  3. Sep 06, 2011
  4. Sep 05, 2011
  5. Sep 01, 2011
  6. Aug 31, 2011
  7. Aug 30, 2011
  8. Aug 27, 2011
  9. Aug 26, 2011
    • Tom Lane's avatar
      Clean up weird corner cases in lexing of psql meta-command arguments. · 928311a4
      Tom Lane authored
      These changes allow backtick command evaluation and psql variable
      interpolation to happen on substrings of a single meta-command argument.
      Formerly, no such evaluations happened at all if the backtick or colon
      wasn't the first character of the argument, and we considered an argument
      completed as soon as we'd processed one backtick, variable reference, or
      quoted substring.  A string like 'FOO'BAR was thus taken as two arguments
      not one, not exactly what one would expect.  In the new coding, an argument
      is considered terminated only by unquoted whitespace or backslash.
      
      Also, clean up a bunch of omissions, infelicities and outright errors in
      the psql documentation of variables and metacommand argument syntax.
      928311a4
    • Tom Lane's avatar
      Support non-ASCII letters in psql variable names. · e86fdb0a
      Tom Lane authored
      As in the backend, the implementation actually accepts any non-ASCII
      character, but we only document that you can use letters.
      e86fdb0a
  10. Aug 25, 2011
  11. Aug 24, 2011
    • Tom Lane's avatar
      Fix pgxs.mk to always add --dbname=$(CONTRIB_TESTDB) to REGRESS_OPTS. · d1d38860
      Tom Lane authored
      The previous coding resulted in contrib modules unintentionally overriding
      the use of CONTRIB_TESTDB.  There seems no particularly good reason to
      allow that (after all, the makefile can set CONTRIB_TESTDB if that's really
      what it intends).
      
      In passing, document REGRESS_OPTS where the other pgxs.mk options are
      documented.
      
      Back-patch to 9.1 --- in prior versions, there were no cases of contrib
      modules setting REGRESS_OPTS without including the --dbname switch, so
      while the coding was fragile there was no actual bug.
      d1d38860
  12. Aug 23, 2011
  13. Aug 18, 2011
  14. Aug 17, 2011
  15. Aug 14, 2011
  16. Aug 11, 2011
    • Bruce Momjian's avatar
      Add major features list and introductory text for 9.1 release notes. · eb72adc8
      Bruce Momjian authored
      Backpatch to 9.1, obviously.
      eb72adc8
    • Robert Haas's avatar
      Display both per-table and per-column FDW options in psql's \d output. · d82d8486
      Robert Haas authored
      Along the way, rename "Options" to "FDW Options" in various places for
      consistency and clarity.
      
      Shigeru Hanada
      d82d8486
    • Robert Haas's avatar
      Change psql's \dd command to do something more useful. · 59414cde
      Robert Haas authored
      Instead of displaying comments on an arbitrary subset of the object
      types which support them, make \dd display comments on exactly those
      object types which don't have their own backlash commands.  We now
      regard the display of comments as properly the job of the relevant
      backslash command (though many of them do so only in verbose mode)
      rather than something that \dd should be responsible for.  However,
      a handful of object types have no backlash command, so make \dd
      give information about those.
      
      Josh Kupershmidt
      59414cde
    • Tom Lane's avatar
      Remove wal_sender_delay GUC, because it's no longer useful. · cff75130
      Tom Lane authored
      The latch infrastructure is now capable of detecting all cases where the
      walsender loop needs to wake up, so there is no reason to have an arbitrary
      timeout.
      
      Also, modify the walsender loop logic to follow the standard pattern of
      ResetLatch, test for work to do, WaitLatch.  The previous coding was both
      hard to follow and buggy: it would sometimes busy-loop despite having
      nothing available to do, eg between receipt of a signal and the next time
      it was caught up with new WAL, and it also had interesting choices like
      deciding to update to WALSNDSTATE_STREAMING on the strength of information
      known to be obsolete.
      cff75130
  17. Aug 08, 2011
    • Robert Haas's avatar
      Teach psql to display the comments on SQL/MED objects in verbose mode. · d82a9d2a
      Robert Haas authored
      The relevant backslash commands already exist, so we're just adding an
      additional column.  With this commit, all objects that have psql backslash
      commands and accept comments should now display those comments at least
      in verbose mode.
      
      Josh Kupershmidt, with doc additions by me.
      d82a9d2a
    • Robert Haas's avatar
      Teach psql to display the comments on conversions and domains. · c9ac00e6
      Robert Haas authored
      \dc and \dD now accept a "+" option, which will cause the comments to
      be displayed.  Along the way, correct a few oversights in the previous
      commit in this area, 3b17efdf - namely,
      (1) when \dL+ is used, make description still be the last column, for
      consistency with what we've done elsewhere; and (2) document the
      difference between \dC and \dC+.
      
      Josh Kupershmidt, with a couple of doc changes by me.
      c9ac00e6
    • Robert Haas's avatar
      Teach vacuumlo to limit number of removals, via new -l option. · b69f2e36
      Robert Haas authored
      Also, handle failure better: don't just blindly keep trying to delete
      stuff after the transaction has already failed.
      
      Tim Lewis, reviewed by Josh Kupershmidt, with further hacking by me.
      b69f2e36
Loading