1. 11 Jun, 2003 17 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 3 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