1. 16 Oct, 2006 7 commits
  2. 15 Oct, 2006 3 commits
  3. 14 Oct, 2006 2 commits
  4. 13 Oct, 2006 6 commits
  5. 12 Oct, 2006 9 commits
  6. 11 Oct, 2006 5 commits
  7. 10 Oct, 2006 5 commits
  8. 09 Oct, 2006 3 commits
    • Tom Lane's avatar
      Revise psql pattern-matching switches as per discussion. The rule is now · 24e97528
      Tom Lane authored
      to process all inclusion switches then all exclusion switches, so that the
      behavior is independent of switch ordering.
      Use of -T does not cause non-table objects to be suppressed.  And
      the patterns are now interpreted the same way psql's \d commands do it,
      rather than as pure regex commands; this allows for example -t schema.tab
      to do what it should have been doing all along.  Re-enable the --blobs
      switch to do something useful, ie, add back blobs into a dump they were
      otherwise suppressed from.
      24e97528
    • Tom Lane's avatar
      Improve description of the pattern matching rules used by psql's \d · 77d2b1b6
      Tom Lane authored
      commands (and soon by pg_dump).
      77d2b1b6
    • Tom Lane's avatar
      Move processNamePattern into dumputils.c in preparation for using it in · 39ed8c40
      Tom Lane authored
      pg_dump as well as psql.  Since psql already uses dumputils.c, while there's
      not any code sharing in the other direction, this seems the easiest way.
      Also, fix misinterpretation of patterns using regex | by adding parentheses
      (same bug found previously in similar_escape()).  This should be backpatched.
      39ed8c40