1. 26 12月, 2005 3 次提交
    • P
      6840cccd
    • B
      Add: · 5c9a46f6
      Bruce Momjian 提交于
      * %Make row-wise comparisons work per SQL spec
      
        Right now, '(a, b) < (1, 2)' is processed as 'a < 1 and b < 2', but
        the SQL standard requires it to be processed as a column-by-column
        comparison, so the proper comparison is '(a < 1) OR (a = 1 AND b < 2)'.
      5c9a46f6
    • N
      Various cosmetic code cleanup for PL/Python: · 97e1535f
      Neil Conway 提交于
      - use "bool" rather than "int" for boolean variables
      
      - use "PLy_malloc" rather than "malloc" in two places
      
      - define "PLy_strdup", and use it rather than malloc() + strcpy() in
        two places (which should have been memcpy(), anyway).
      
      - remove a bunch of redundant parentheses from expressions that do not
        need the parentheses for code clarity
      97e1535f
  2. 25 12月, 2005 9 次提交
  3. 24 12月, 2005 5 次提交
  4. 23 12月, 2005 6 次提交
  5. 22 12月, 2005 2 次提交
  6. 21 12月, 2005 1 次提交
  7. 20 12月, 2005 2 次提交
  8. 18 12月, 2005 8 次提交
    • P
      Add new psql command \password for changing role password with client-side · b16566d7
      Peter Eisentraut 提交于
      password encryption.  Also alter createuser command to the same effect.
      b16566d7
    • B
      Fix typo. · ea771743
      Bruce Momjian 提交于
      ea771743
    • B
      Update s_lock.c comments. · 8d26730a
      Bruce Momjian 提交于
      8d26730a
    • B
      Update ASM comments. · 70cab220
      Bruce Momjian 提交于
      70cab220
    • B
      Remove item: · 25af534e
      Bruce Momjian 提交于
      < * Allow star join optimizations
      <
      <   While our bitmap scan allows multiple indexes to be joined to get
      <   to heap rows, a star joins allows multiple dimension _tables_ to
      <   be joined to index into a larger main fact table.  The join is
      <   usually performed by either creating a cartesian product of all
      <   the dimmension tables and doing a single join on that product or
      <   using subselects to create bitmaps of each dimmension table match
      <   and merge the bitmaps to perform the join on the fact table.  Some
      <   of these algorithms might be patented.
      25af534e
    • B
      Update: · 3282b633
      Bruce Momjian 提交于
      < * Flush cached query plans when the dependent objects change or
      <   when the cardinality of parameters changes dramatically
      > * Flush cached query plans when the dependent objects change,
      >   when the cardinality of parameters changes dramatically, or
      >   when new ANALYZE statistics are available
      3282b633
    • B
      Add mention of possible patent problems with star joins, per Joshua · 16843ba3
      Bruce Momjian 提交于
      Drake:
      
      <   and merge the bitmaps to perform the join on the fact table.
      >   and merge the bitmaps to perform the join on the fact table.  Some
      >   of these algorithms might be patented.
      16843ba3
    • B
      Add: · 9e9a844f
      Bruce Momjian 提交于
      * Allow star join optimizations
      
        While our bitmap scan allows multiple indexes to be joined to get
        to heap rows, a star joins allows multiple dimension _tables_ to
        be joined to index into a larger main fact table.  The join is
        usually performed by either creating a cartesian product of all
        the dimmension tables and doing a single join on that product or
        using subselects to create bitmaps of each dimmension table match
        and merge the bitmaps to perform the join on the fact table.
      9e9a844f
  9. 17 12月, 2005 4 次提交
    • B
      Add more function to TODO: · 927f5768
      Bruce Momjian 提交于
      < * %Add pg_get_acldef(), pg_get_typedefault(), and pg_get_attrdef()
      > * %Add pg_get_acldef(), pg_get_typedefault(), pg_get_attrdef(),
      >   pg_get_tabledef(), pg_get_domaindef(), pg_get_functiondef()
      927f5768
    • B
      Update: · eae75beb
      Bruce Momjian 提交于
      < * Flush cached query plans when the dependent objects change
      > * Flush cached query plans when the dependent objects change or
      >   when the cardinality of parameters changes dramatically
      eae75beb
    • B
      Update FAQ, second version. · 91e9e74f
      Bruce Momjian 提交于
      J.Kuwamura
      91e9e74f
    • B
      Update Japanese FAQ. · 2475a5d8
      Bruce Momjian 提交于
      J.Kuwamura
      2475a5d8