1. 18 7月, 2002 2 次提交
    • T
      I have committed many support files for CREATE CONVERSION. Default · eb335a03
      Tatsuo Ishii 提交于
      conversion procs and conversions are added in initdb. Currently
      supported conversions are:
      
      UTF-8(UNICODE) <--> SQL_ASCII, ISO-8859-1 to 16, EUC_JP, EUC_KR,
      		    EUC_CN, EUC_TW, SJIS, BIG5, GBK, GB18030, UHC,
      		    JOHAB, TCVN
      
      EUC_JP <--> SJIS
      EUC_TW <--> BIG5
      MULE_INTERNAL <--> EUC_JP, SJIS, EUC_TW, BIG5
      
      Note that initial contents of pg_conversion system catalog are created
      in the initdb process. So doing initdb required is ideal, it's
      possible to add them to your databases by hand, however. To accomplish
      this:
      
      psql -f your_postgresql_install_path/share/conversion_create.sql your_database
      
      So I did not bump up the version in cataversion.h.
      
      TODO:
      Add more conversion procs
      Add [CASCADE|RESTRICT] to DROP CONVERSION
      Add tuples to pg_depend
      Add regression tests
      Write docs
      Add SQL99 CONVERT command?
      --
      Tatsuo Ishii
      eb335a03
    • B
      Done, not sure when, reported by Neil Conway: · df432df9
      Bruce Momjian 提交于
      > * -Report failure to find readline or zlib at end of configure run
      df432df9
  2. 17 7月, 2002 7 次提交
  3. 16 7月, 2002 16 次提交
  4. 15 7月, 2002 7 次提交
  5. 14 7月, 2002 1 次提交
  6. 13 7月, 2002 5 次提交
    • B
      Mark as done, per Rod: · 59097af0
      Bruce Momjian 提交于
      > o -Add ALTER TABLE DROP non-CHECK CONSTRAINT
      > * -Allow psql \d to show foreign keys
      > * -Auto-destroy sequence on DROP of table with SERIAL; perhaps a separate
      > * -Prevent column dropping if column is used by foreign key
      > * -Automatically drop constraints/functions when object is dropped
      > * -Make foreign key constraints clearer in dump file
      > * -Make foreign keys easier to identify
      59097af0
    • B
      Both done: · fa064e97
      Bruce Momjian 提交于
      o -Add SET or BEGIN timeout parameter to cancel query
      > * -Add pg_depend table for dependency recording; use sysrelid, oid,
      fa064e97
    • B
      Add SET statement_timeout capability. Timeout is in ms. A value of · 4db8718e
      Bruce Momjian 提交于
      zero turns off the timer.
      4db8718e
    • B
      Re-add -I documentation, per Tom. · ccb3f90f
      Bruce Momjian 提交于
      ccb3f90f
    • T
      Second phase of committing Rod Taylor's pg_depend/pg_constraint patch. · 7c6df91d
      Tom Lane 提交于
      pg_relcheck is gone; CHECK, UNIQUE, PRIMARY KEY, and FOREIGN KEY
      constraints all have real live entries in pg_constraint.  pg_depend
      exists, and RESTRICT/CASCADE options work on most kinds of DROP;
      however, pg_depend is not yet very well populated with dependencies.
      (Most of the ones that are present at this point just replace formerly
      hardwired associations, such as the implicit drop of a relation's pg_type
      entry when the relation is dropped.)  Need to add more logic to create
      dependency entries, improve pg_dump to dump constraints in place of
      indexes and triggers, and add some regression tests.
      7c6df91d
  7. 12 7月, 2002 2 次提交