1. 22 5月, 2002 1 次提交
  2. 19 5月, 2002 1 次提交
  3. 18 5月, 2002 2 次提交
  4. 17 5月, 2002 1 次提交
  5. 14 5月, 2002 2 次提交
    • T
      Fix bug in psql. · cd61650f
      Tatsuo Ishii 提交于
      per report from sugita@sra.co.jp on Thu, 09 May 2002 11:57:51 +0900
      (JST) at pgsql-patches list.
      
      Illegal long options to pg_dump makes core on some systems, since it
      lacks the last null sentinel of struct option array.
      
      Attached is a patch made by Mr. Ishida Akio <iakio@pjam.jpweb.net>.
      cd61650f
    • T
      Make operators have their own comments separate from those of the · f69bc37b
      Tom Lane 提交于
      underlying function; but cause psql's \do to show the underlying
      function's comment if the operator has no comment of its own, to preserve
      the useful functionality of the original behavior.  Also, implement
      COMMENT ON SCHEMA.  Patch from Rod Taylor.
      f69bc37b
  6. 11 5月, 2002 1 次提交
  7. 09 5月, 2002 1 次提交
  8. 07 5月, 2002 2 次提交
  9. 30 4月, 2002 1 次提交
  10. 29 4月, 2002 1 次提交
  11. 28 4月, 2002 1 次提交
    • T
      Support toasting of shared system relations, and provide toast tables for · c06f6a6b
      Tom Lane 提交于
      pg_database, pg_shadow, pg_group, all of which now have potentially-long
      fields.  Along the way, get rid of SharedSystemRelationNames list: shared
      rels are now identified in their include/pg_catalog/*.h files by a
      BKI_SHARED_RELATION macro, while indexes and toast rels inherit sharedness
      automatically from their parent table.  Fix some bugs with failure to detoast
      pg_group.grolist during ALTER GROUP.
      c06f6a6b
  12. 25 4月, 2002 3 次提交
  13. 24 4月, 2002 8 次提交
  14. 21 4月, 2002 2 次提交
  15. 20 4月, 2002 1 次提交
  16. 19 4月, 2002 1 次提交
    • T
      Rule names are now unique per-relation, rather than unique globally. · b3120804
      Tom Lane 提交于
      DROP RULE and COMMENT ON RULE syntax adds an 'ON tablename' clause,
      similar to TRIGGER syntaxes.  To allow loading of existing pg_dump
      files containing COMMENT ON RULE, the COMMENT code will still accept
      the old syntax --- but only if the target rulename is unique across
      the whole database.
      b3120804
  17. 16 4月, 2002 1 次提交
  18. 14 4月, 2002 1 次提交
    • B
      Rod's patch does what it is supposed to do, but it also includes · 7603c42e
      Bruce Momjian 提交于
      some old code to add PK constraints to CREATE TABLE. That stuff
      had been removed as part of my original patch for pg_dump a
      little while ago.
      
      The attached patch fixes this by removing (again :-) ) the
      code in dumpTables() to perform PK creation during CREATE
      TABLE. I briefly tested it locally and it fixes both of
      Tom's test cases.
      
      Please apply.
      
      Cheers,
      
      Neil
      
      --
      Neil Conway <neilconway@rogers.com>
      7603c42e
  19. 12 4月, 2002 6 次提交
  20. 11 4月, 2002 2 次提交
  21. 05 4月, 2002 1 次提交
    • B
      I was tinkering with creating rules on views (so, for instance, one could · aab0b8f5
      Bruce Momjian 提交于
      insert on a view), and noticed that psql wouldn't show the list of rules
      set up on a view, like it does for tables.
      
      The fix was extremely simple, so I figured I'd share it.  Not sure what
      the standard is for communicating these things, so I've attached the diff
      file for /src/bin/psql/describe.c.
      
      Paul (?)
      aab0b8f5