1. 16 8月, 2002 2 次提交
    • B
      Done: · 52f8c56a
      Bruce Momjian 提交于
      > 	o -Prevent loss of indexes, permissions, inheritance
      52f8c56a
    • B
      Done: · ea1954fc
      Bruce Momjian 提交于
      > * -Improve control over user privileges, including table creation
      > * -Add PGPASSWORDFILE environment variable or ~/.pgpass to store
      > 	o -Compile under jdk 1.4
      ea1954fc
  2. 15 8月, 2002 2 次提交
    • B
      Update text: · 64a06494
      Bruce Momjian 提交于
      < 	o Allow PL/PgSQL function parameters to be passed by name,
      > 	o Allow function parameters to be passed by name,
      64a06494
    • B
      Update: · 5b743090
      Bruce Momjian 提交于
      > 	o Cluster all tables at once using pg_index.indisclustered set during
      >           previous CLUSTER
      5b743090
  3. 14 8月, 2002 7 次提交
    • B
      I guess I'd vote for changing the code to be · dec91847
      Bruce Momjian 提交于
              sys = malloc(strlen(editorName) + strlen(fname) + 10 + 1);
              if (!sys)
                      return false;
              sprintf(sys, "exec '%s' '%s'", editorName, fname);
      
      (note the added quotes to provide a little protection against spaces
      and such).  Then it's perfectly obvious what the calculation is doing.
      I don't care about wasting 20-some bytes, but confusing readers of the
      code is worth avoiding.
      
                              regards, tom lane
      dec91847
    • B
      Add: · fcbc87c1
      Bruce Momjian 提交于
      > 	o Add ALTER TABLE tab SET WITHOUT OIDS
      fcbc87c1
    • B
      Oops, not done: · 561e25ad
      Bruce Momjian 提交于
      > * Have views on temporary tables exist in the temporary namespace
      561e25ad
    • B
      Updated: · 596ba5ec
      Bruce Momjian 提交于
      < * Allow temporary views
      < * Require view using temporary tables to be temporary views
      > * -Have views on temporary tables exist in the temporary namespace
      596ba5ec
    • B
      Fix spacing. · 293ab5ab
      Bruce Momjian 提交于
      293ab5ab
    • B
      Added: · 9f19f3c8
      Bruce Momjian 提交于
      <
      > 	o Improve PL/PgSQL exception handling
      > 	o Allow PL/PgSQL parameters to be specified by name and type during
      > 	  definition
      > 	o Allow PL/PgSQL function parameters to be passed by name,
      > 	  get_employee_salary(emp_id => 12345, tax_year => 2001)
      > 	o Add PL/PgSQL packages
      > 	o Allow array declarations and other data types in PL/PgSQl DECLARE
      > 	o Add PL/PgSQL PROCEDURES that can return multiple values
      9f19f3c8
    • B
      Done: · e9a0de8b
      Bruce Momjian 提交于
      > * -Increase identifier length (NAMEDATALEN) if small performance hit,
      > * -Increase maximum number of function parameters if little wasted space
      e9a0de8b
  4. 13 8月, 2002 1 次提交
    • B
      Update: · b6d8df67
      Bruce Momjian 提交于
      > * Use bitmaps to fetch heap pages in sequential order [performance]
      > * Use bitmaps to combine existing indexes [performance]
      b6d8df67
  5. 09 8月, 2002 2 次提交
    • B
      Done: · 41e73280
      Bruce Momjian 提交于
      > 	o -Fix PL/PgSQL to handle quoted mixed-case identifiers
      41e73280
    • B
      Add: · 54916d57
      Bruce Momjian 提交于
      > * Allow INET subnet tests using non-constants
      54916d57
  6. 04 8月, 2002 2 次提交
  7. 03 8月, 2002 2 次提交
  8. 31 7月, 2002 6 次提交
    • B
      Done: · 8be3cfbb
      Bruce Momjian 提交于
      > * -Remove LockMethodTable.prio field, not used (Bruce)
      8be3cfbb
    • B
      Done: · b8efa875
      Bruce Momjian 提交于
      > * -Add getpid() function to backend
      b8efa875
    • B
      Updated: · 2c2c43d0
      Bruce Momjian 提交于
      < 	o ALTER TABLE ADD COLUMN column SET DEFAULT should fill existing
      > 	o ALTER TABLE ADD COLUMN column DEFAULT should fill existing
      2c2c43d0
    • B
      Clarification from Tom: · b30ccbe3
      Bruce Momjian 提交于
      < 	o ALTER TABLE ALTER COLUMN column SET DEFAULT should fill existing
      > 	o ALTER TABLE ADD COLUMN column SET DEFAULT should fill existing
      b30ccbe3
    • B
      Added for Neil Conway: · 6c01708c
      Bruce Momjian 提交于
      > * Use CHECK constraints to improve optimizer decisions
      6c01708c
    • B
      Done: · 620abeb2
      Bruce Momjian 提交于
      > 	o -Generate failure on short COPY lines rather than pad NULLs
      620abeb2
  9. 30 7月, 2002 2 次提交
    • B
      Move item: · 5bf55525
      Bruce Momjian 提交于
      < * Allow logging of query durations
      5bf55525
    • B
      Fix from Neil Conway: · b9459c6a
      Bruce Momjian 提交于
      < 	o ALTER TABLE ADD COLUMN column SET DEFAULT should fill existing
      > 	o ALTER TABLE ALTER COLUMN column SET DEFAULT should fill existing
      b9459c6a
  10. 25 7月, 2002 1 次提交
    • B
      Done: · f7ba1db7
      Bruce Momjian 提交于
      > * -Add Intimate Shared Memory(ISM) for Solaris
      f7ba1db7
  11. 24 7月, 2002 1 次提交
    • B
      Done: · b4b3c63b
      Bruce Momjian 提交于
      > * -Allow UPDATE/DELETE on inherited table
      b4b3c63b
  12. 21 7月, 2002 1 次提交
    • B
      Mark items as done: · 17b28503
      Bruce Momjian 提交于
      
      > * -Add GUC parameter for DATESTYLE
      > 	o -Allow specification of column names
      > 	o -Change syntax to WITH DELIMITER, (keep old syntax around?)
      > 	o -Remove SET KSQO option now that OR processing is improved (Tom)
      > 	o -Allow SHOW to output as a query result, like EXPLAIN
      > * -Add SQL92 schemas (Tom)
      17b28503
  13. 20 7月, 2002 1 次提交
    • B
      Done: · d7d741af
      Bruce Momjian 提交于
      > * -Add BSD-licensed qsort() for Solaris
      d7d741af
  14. 19 7月, 2002 2 次提交
    • B
      Done: · 4feeee17
      Bruce Momjian 提交于
      > * -HOLDER/HOLDERTAB rename to PROCLOCK/PROCLOCKTAG (Bruce)
      4feeee17
    • B
      Done: · a345ac88
      Bruce Momjian 提交于
      > * -Merge LockMethodCtl and LockMethodTable into one shared structure (Bruce)
      a345ac88
  15. 18 7月, 2002 2 次提交
  16. 16 7月, 2002 1 次提交
    • B
      Item not needed: · 1a6f91c9
      Bruce Momjian 提交于
      < * Use our own getopt() for FreeBSD/OpenBSD to allow --xxx flags (Bruce)
      1a6f91c9
  17. 13 7月, 2002 2 次提交
    • 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
  18. 12 7月, 2002 2 次提交
  19. 11 7月, 2002 1 次提交