1. 12 Feb, 2006 6 commits
    • Tom Lane's avatar
      Fix more fallout from line-wrap patch, to wit, arbitrarily changing · 6c0d4aab
      Tom Lane authored
      the API of PQdsplen without bothering to fix its callers.  Although
      ReportSyntaxErrorPosition could probably do with more smarts about
      handling control characters, for the moment I'll just get it back to
      handling tabs consistently.
      6c0d4aab
    • Bruce Momjian's avatar
      I've created a new shared catalog table pg_shdescription to store · f9a726aa
      Bruce Momjian authored
      comments on cluster global objects like databases, tablespaces, and
      roles.
      
      It touches a lot of places, but not much in the way of big changes.  The
      only design decision I made was to duplicate the query and manipulation
      functions rather than to try and have them handle both shared and local
      comments.  I believe this is simpler for the code and not an issue for
      callers because they know what type of object they are dealing with.
      This has resulted in a shobj_description function analagous to
      obj_description and backend functions [Create/Delete]SharedComments
      mirroring the existing [Create/Delete]Comments functions.
      
      pg_shdescription.h goes into src/include/catalog/
      
      Kris Jurka
      f9a726aa
    • Tom Lane's avatar
      Undo changes of trailing space in recently-committed expected files. · 95dbf9c0
      Tom Lane authored
      This is mostly just over-compulsiveness on my part, but the exercise
      did reveal one real bug: errors.out has a space difference now where
      it should not.
      95dbf9c0
    • Tom Lane's avatar
      Restore previous psql behavior of not printing useless trailing spaces · 3f9d2edd
      Tom Lane authored
      after the data in the last column on a line.
      3f9d2edd
    • Bruce Momjian's avatar
      Please find enclosed a patch that lets you use \c to connect · 07bae9c0
      Bruce Momjian authored
      (optionally) to a new host and port without exiting psql.  This
      eliminates, IMHO, a surprise in that you can now connect to PostgreSQL
      on a differnt machine from the one where you started your session. This
      should help people who use psql as an administrative tool.
      
      David Fetter
      07bae9c0
    • Tom Lane's avatar
      Actually there's a better way to do this, which is to count tuples · d52a57fc
      Tom Lane authored
      during the vacuumcleanup scan that we're going to do anyway.  Should
      save a few cycles (one calculation per page, not per tuple) as well
      as not having to depend on assumptions about heap and index being
      in step.
      I think this could probably be made to work for GIST too, but that
      code looks messy enough that I'm disinclined to try right now.
      d52a57fc
  2. 11 Feb, 2006 11 commits
  3. 10 Feb, 2006 13 commits
  4. 09 Feb, 2006 7 commits
  5. 08 Feb, 2006 1 commit
    • Michael Meskes's avatar
      Added just another test case. · e3740d2c
      Michael Meskes authored
       Fixed missing continuation line character.
       Do not translate $-quoting.
       Bit field notation belongs to a variable not a variable list.
       Output of line number only done by one function.
      e3740d2c
  6. 07 Feb, 2006 2 commits