1. 18 1月, 2007 1 次提交
  2. 17 1月, 2007 4 次提交
  3. 16 1月, 2007 1 次提交
  4. 15 1月, 2007 1 次提交
  5. 13 1月, 2007 3 次提交
  6. 11 1月, 2007 8 次提交
  7. 10 1月, 2007 8 次提交
  8. 09 1月, 2007 2 次提交
    • B
      Done: · b0452cd8
      Bruce Momjian 提交于
      < * Allow the creation of indexes with mixed ascending/descending
      > * -Allow the creation of indexes with mixed ascending/descending
      <
      <   This is possible now by creating an operator class with reversed sort
      <   operators.  One complexity is that NULLs would then appear at the start
      <   of the result set, and this might affect certain sort types, like
      <   merge join.
      <
      b0452cd8
    • T
      Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LAST · 44317582
      Tom Lane 提交于
      per-column options for btree indexes.  The planner's support for this is still
      pretty rudimentary; it does not yet know how to plan mergejoins with
      nondefault ordering options.  The documentation is pretty rudimentary, too.
      I'll work on improving that stuff later.
      
      Note incompatible change from prior behavior: ORDER BY ... USING will now be
      rejected if the operator is not a less-than or greater-than member of some
      btree opclass.  This prevents less-than-sane behavior if an operator that
      doesn't actually define a proper sort ordering is selected.
      44317582
  9. 08 1月, 2007 1 次提交
  10. 07 1月, 2007 10 次提交
    • P
    • B
      Remove: · 324297df
      Bruce Momjian 提交于
      < * %Allow the identifier length to be increased via a configure option
      324297df
    • B
      Updates for MONEY data type: · 06d00901
      Bruce Momjian 提交于
      < * Improve the MONEY data type
      > * -Make 64-bit version of the MONEY data type
      > * Add locale-aware MONEY type, and support multiple currencies
      <   Change the MONEY data type to use DECIMAL internally, with special
      <   locale-aware output formatting.
      <   http://archives.postgresql.org/pgsql-hackers/2006-09/msg01107.php
      06d00901
    • B
      Done: · d23d19a1
      Bruce Momjian 提交于
      > * -Allow user-defined types to accept 'typmod' parameters
      d23d19a1
    • B
      Add: · 94609f00
      Bruce Momjian 提交于
      >
      > * Make consistent use of long/short command options --- pg_ctl needs
      >   long ones, pg_config doesn't have short ones, postgres doesn't have
      >   enough long ones, etc.
      94609f00
    • B
      Add: · 147f2e91
      Bruce Momjian 提交于
      > 	o Consider parsing the -c string into individual queries so each
      > 	  is run in its own transaction
      >
      > 	o Consider disallowing multiple queries in PQexec() as an
      > 	  additional barrier to SQL injection attacks
      147f2e91
    • B
      Already done in 8.2: · 282f7f2e
      Bruce Momjian 提交于
      < * Allow CREATE INDEX to take an additional parameter for use with
      <   special index types
      282f7f2e
    • B
      Move INDEX inheritance out into a separate section: · bd87cd5f
      Bruce Momjian 提交于
      < * Allow inherited tables to inherit index, UNIQUE constraint, and primary
      <   key, foreign key
      < * UNIQUE INDEX on base column not honored on INSERTs/UPDATEs from
      <   inherited table:  INSERT INTO inherit_table (unique_index_col) VALUES
      <   (dup) should fail
      <
      <   The main difficulty with this item is the problem of creating an index
      <   that can span more than one table.
      <
      < * Allow SELECT ... FOR UPDATE on inherited tables
      > * Inheritance
      >
      > 	o Allow inherited tables to inherit indexes, UNIQUE constraints,
      > 	  and primary/foreign keys
      > 	o Honor UNIQUE INDEX on base column in INSERTs/UPDATEs
      > 	  on inherited table, e.g.  INSERT INTO inherit_table
      > 	  (unique_index_col) VALUES (dup) should fail
      >
      > 	  The main difficulty with this item is the problem of
      > 	  creating an index that can span multiple tables.
      >
      > 	o Allow SELECT ... FOR UPDATE on inherited tables
      >
      >
      >
      bd87cd5f
    • B
      Done: · 9cfcfd7c
      Bruce Momjian 提交于
      > * -Allow the pg_xlog directory location to be specified during initdb
      9cfcfd7c
    • B
      Allow initdb to specify the pg_xlog directory. · c3578a68
      Bruce Momjian 提交于
      Euler Taveira de Oliveira
      c3578a68
  11. 06 1月, 2007 1 次提交