1. 11 Jun, 2003 13 commits
  2. 10 Jun, 2003 2 commits
  3. 09 Jun, 2003 2 commits
  4. 08 Jun, 2003 1 commit
  5. 07 Jun, 2003 2 commits
  6. 06 Jun, 2003 11 commits
  7. 05 Jun, 2003 2 commits
  8. 02 Jun, 2003 7 commits
    • Tom Lane's avatar
      53691902
    • Bruce Momjian's avatar
      In src/include/mb/pg_wchar.h we have: · cb36e74e
      Bruce Momjian authored
      #define PG_ENCODING_BE_LAST PG_ISO_8859_8
      #define PG_ENCODING_FE_LAST PG_WIN1256
      
      but the last client encoding in the enum list is actually PG_GB18030 and
      it seems that
      
      #define PG_ENCODING_IS_CLIEN_ONLY(_enc) \
                      (((_enc) > PG_ENCODING_BE_LAST && (_enc) <= PG_ENCODING_FE_LAST)
      
      can never be true.
      
      I think the define should read
      #define PG_ENCODING_FE_LAST PG_GB18030
      
      On the other hand, perhaps no-one cares, because
      PG_ENCODING_IS_CLIEN_ONLY is never used.
      
      --
      Oliver Elphick                                Oliver.Elphick@lfix.co.uk
      cb36e74e
    • Bruce Momjian's avatar
      Add: · 1c5e7168
      Bruce Momjian authored
      > * Allow logging of only data definition(DDL), or DDL and modification statements
      1c5e7168
    • Bruce Momjian's avatar
      Add: · 2eca3ea2
      Bruce Momjian authored
      > * Allow a single index to index multiple tables (for inheritance and subtables)
      408a410
      > * Improve the planner to use CHECK constraints to prune the plan (for subtables)
      418a421
      > * Allow partitioning of table into multiple subtables
      419a423
      > T
      2eca3ea2
    • Bruce Momjian's avatar
      c0fdd2b4
    • Bruce Momjian's avatar
      Add Turkish FAQ, from Devrim GUNDUZ. · 7facd5d1
      Bruce Momjian authored
      7facd5d1
    • Bruce Momjian's avatar
      Add: · 202f77fe
      Bruce Momjian authored
      > * Allow SET CONSTRAINTS to be qualified by schema/table
      202f77fe