1. 15 9月, 2006 7 次提交
  2. 13 9月, 2006 1 次提交
  3. 11 9月, 2006 1 次提交
    • B
      Add items: · a80b1b4b
      Bruce Momjian 提交于
      < * Research storing disk pages with no alignment/padding
      > * Consider ways of storing rows more compactly on disk
      >
      > 	o Store disk pages with no alignment/padding?
      > 	o Reorder physical storage order to reduce padding?
      > 	o Support a smaller header for short variable-length fields?
      > 	o Reduce the row header size?
      a80b1b4b
  4. 03 9月, 2006 5 次提交
    • B
      Remove: · f79f57a0
      Bruce Momjian 提交于
      < * Change LIMIT/OFFSET and FETCH/MOVE to use int8
      f79f57a0
    • B
      Reverted: · 5120f88c
      Bruce Momjian 提交于
      < * -Change LIMIT/OFFSET and FETCH/MOVE to use int8
      > * Change LIMIT/OFFSET and FETCH/MOVE to use int8
      5120f88c
    • B
      Add: · 18f2e035
      Bruce Momjian 提交于
      > * Simplify ability to create partitioned tables
      >
      >   This would allow creation of partitioned tables without requiring
      >   creation of rules for INSERT/UPDATE/DELETE, and constraints for
      >   rapid partition selection.  Options could include range and hash
      >   partition selection.
      >
      > * Allow auto-selection of partitioned tables for min/max() operations
      18f2e035
    • B
    • B
      Update: · 9e522d08
      Bruce Momjian 提交于
      < Last updated:		Sat Sep  2 08:31:04 EDT 2006
      > Last updated:		Sat Sep  2 16:31:46 EDT 2006
      < 	o Allow UPDATE tab SET ROW (col, ...) = (...) for updating multiple
      < 	  columns
      > 	o -Allow UPDATE tab SET ROW (col, ...) = (val, ...) for updating
      > 	  multiple columns
      > 	o Allow UPDATE tab SET ROW (col, ...) = (SELECT...)
      <           A subselect can also be used as the value source.
      9e522d08
  5. 02 9月, 2006 2 次提交
    • B
      Update wording: · bb7be1ee
      Bruce Momjian 提交于
      < 		o -Allow PL/python to composite types and result sets
      > 		o -Allow PL/python to return composite types and result sets
      bb7be1ee
    • B
      Done: · b1620c53
      Bruce Momjian 提交于
                      o -Allow PL/python to composite types and result sets
      b1620c53
  6. 31 8月, 2006 1 次提交
    • B
      Done: · 5bb9c259
      Bruce Momjian 提交于
      < Last updated:		Tue Aug 29 12:21:52 EDT 2006
      > Last updated:		Wed Aug 30 20:34:28 EDT 2006
      < 	o Allow COPY (SELECT ...) TO 'filename'
      <
      < 	  COPY should also be able to output views using COPY (SELECT
      < 	  * FROM view) TO 'filename' internally.
      < 	  http://archives.postgresql.org/pgsql-patches/2005-09/msg00148.php
      > 	o -Allow COPY (SELECT ...) TO 'filename'
      5bb9c259
  7. 30 8月, 2006 1 次提交
  8. 29 8月, 2006 3 次提交
    • B
    • B
      Move to referential integrity section: · 22bb6929
      Bruce Momjian 提交于
      > 	o Allow DEFERRABLE and end-of-statement UNIQUE constraints?
      >
      > 	  This would allow UPDATE tab SET col = col + 1 to work if col has
      > 	  a unique index.  Currently, uniqueness checks are done while the
      > 	  command is being executed, rather than at the end of the statement
      > 	  or transaction.
      >
      <
      < * Allow DEFERRABLE and end-of-statement UNIQUE constraints?
      <
      <   This would allow UPDATE tab SET col = col + 1 to work if col has
      <   a unique index.  Currently, uniqueness checks are done while the
      <   command is being executed, rather than at the end of the statement
      <   or transaction.
      22bb6929
    • B
      Update: · 79222272
      Bruce Momjian 提交于
      < * Allow DEFERRABLE UNIQUE constraints?
      > * Allow DEFERRABLE and end-of-statement UNIQUE constraints?
      >
      >   This would allow UPDATE tab SET col = col + 1 to work if col has
      >   a unique index.  Currently, uniqueness checks are done while the
      >   command is being executed, rather than at the end of the statement
      >   or transaction.
      >
      79222272
  9. 26 8月, 2006 2 次提交
  10. 25 8月, 2006 1 次提交
    • B
      Add: · 726ede73
      Bruce Momjian 提交于
      > * Allow inlining of set-returning functions
      726ede73
  11. 24 8月, 2006 1 次提交
    • B
      Add "AS" item: · 7ad642d0
      Bruce Momjian 提交于
      < * All backends running as threads in a single process (not want)
      > * All backends running as threads in a single process (not wanted)
      < * Optimizer hints (not want)
      > * Optimizer hints (not wanted)
      >
      > * Allow AS in "SELECT col AS label" to be optional (not wanted)
      >
      >   Because we support postfix operators, it isn't possible to make AS
      >   optional and continue to use bison.
      >   http://archives.postgresql.org/pgsql-sql/2006-08/msg00164.php
      7ad642d0
  12. 23 8月, 2006 1 次提交
    • B
      Update COPY/VIEW item: · efdec1ac
      Bruce Momjian 提交于
      < 	o Allow COPY to output from SELECT
      > 	o Allow COPY (SELECT ...) TO 'filename'
      < 	  COPY should also be able to output views.
      > 	  COPY should also be able to output views using COPY (SELECT
      > 	  * FROM view) TO 'filename' internally.
      efdec1ac
  13. 22 8月, 2006 1 次提交
  14. 21 8月, 2006 2 次提交
    • B
      Done: · 1054c380
      Bruce Momjian 提交于
      < 	o Add a function to support Parse/DescribeStatement capability
      > 	o -Add a function to support Parse/DescribeStatement capability
      1054c380
    • B
      Remove items, not needed anymore: · fe5d2133
      Bruce Momjian 提交于
      < * %Disallow changing DEFAULT expression of a SERIAL column?
      <
      <   This should be done only if the existing SERIAL problems cannot be
      <   fixed.
      <
      < * %Disallow ALTER SEQUENCE changes for SERIAL sequences because pg_dump
      <   does not dump the changes
      fe5d2133
  15. 17 8月, 2006 2 次提交
  16. 16 8月, 2006 1 次提交
    • B
      Add: · 6a5a241e
      Bruce Momjian 提交于
      > * Add support for arrays of domains
      6a5a241e
  17. 12 8月, 2006 2 次提交
    • B
      Done: · 510aad39
      Bruce Momjian 提交于
      < 	o Allow INSERT/UPDATE ... RETURNING new.col or old.col
      <
      < 	  This is useful for returning the auto-generated key for an INSERT.
      < 	  One complication is how to handle rules that run as part of
      < 	  the insert.
      < 	  http://archives.postgresql.org/pgsql-patches/2005-07/msg00568.php
      > 	o -Allow INSERT/UPDATE ... RETURNING new.col or old.col
      510aad39
    • B
      Done: · 99c2b8b8
      Bruce Momjian 提交于
      < 	o %Allow commenting of variables in postgresql.conf to restore them
      > 	o -Allow commenting of variables in postgresql.conf to restore them
      99c2b8b8
  18. 11 8月, 2006 1 次提交
  19. 10 8月, 2006 3 次提交
  20. 09 8月, 2006 2 次提交