1. 02 8月, 1998 1 次提交
  2. 26 7月, 1998 2 次提交
    • M
      · 5979d738
      Marc G. Fournier 提交于
      From: t-ishii@sra.co.jp
      
      As Bruce mentioned, this is due to the conflict among changes we made.
      Included patches should fix the problem(I changed all MB to
      MULTIBYTE). Please let me know if you have further problem.
      
      P.S. I did not include pathces to configure and gram.c to save the
      file size(configure.in and gram.y modified).
      5979d738
    • M
      · 74b30a3a
      Marc G. Fournier 提交于
      I missed addding initdb.sh ...
      74b30a3a
  3. 24 7月, 1998 1 次提交
    • M
      · bf00bbb0
      Marc G. Fournier 提交于
      I really hope that I haven't missed anything in this one...
      
      From: t-ishii@sra.co.jp
      
      Attached are patches to enhance the multi-byte support.  (patches are
      against 7/18 snapshot)
      
      * determine encoding at initdb/createdb rather than compile time
      
      Now initdb/createdb has an option to specify the encoding. Also, I
      modified the syntax of CREATE DATABASE to accept encoding option. See
      README.mb for more details.
      
      For this purpose I have added new column "encoding" to pg_database.
      Also pg_attribute and pg_class are changed to catch up the
      modification to pg_database.  Actually I haved added pg_database_mb.h,
      pg_attribute_mb.h and pg_class_mb.h. These are used only when MB is
      enabled. The reason having separate files is I couldn't find a way to
      use ifdef or whatever in those files. I have to admit it looks
      ugly. No way.
      
      * support for PGCLIENTENCODING when issuing COPY command
      
      commands/copy.c modified.
      
      * support for SQL92 syntax "SET NAMES"
      
      See gram.y.
      
      * support for LATIN2-5
      * add UNICODE regression test case
      * new test suite for MB
      
      New directory test/mb added.
      
      * clean up source files
      
      Basic idea is to have MB's own subdirectory for easier maintenance.
      These are include/mb and backend/utils/mb.
      bf00bbb0
  4. 07 4月, 1998 1 次提交
  5. 06 4月, 1998 5 次提交
    • B
      Cleanup initdb · 6d708c69
      Bruce Momjian 提交于
      6d708c69
    • B
      Re-introduce $DISTDIR. · 5523beb9
      Bruce Momjian 提交于
      5523beb9
    • B
      Move initdb.sh to initdb · 47364f31
      Bruce Momjian 提交于
      47364f31
    • B
      Hi, · 1e801a8f
      Bruce Momjian 提交于
      Attached you'll find a (big) patch that fixes make dep and make
      depend in all Makefiles where I found it to be appropriate.
      
      It also removes the dependency in Makefile.global for NAMEDATALEN
      and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh
      a little smarter.
      
      This no longer requires initdb.sh that is turned into initdb with
      a sed script when installing Postgres, hence initdb.sh should be
      renamed to initdb (after the patch has been applied :-) )
      
      This patch is against the 6.3 sources, as it took a while to
      complete.
      
      Please review and apply,
      
      Cheers,
      
      Jeroen van Vianen
      1e801a8f
    • B
      Remove DISTDIR. · 2dfee934
      Bruce Momjian 提交于
      2dfee934
  6. 23 3月, 1998 2 次提交
  7. 16 3月, 1998 1 次提交
  8. 25 2月, 1998 1 次提交
    • M
      From: Jan Wieck <jwieck@debis.com> · 780068f8
      Marc G. Fournier 提交于
          seems  that  my last post didn't make it through. That's good
          since  the  diff  itself  didn't  covered  the  renaming   of
          pg_user.h to pg_shadow.h and it's new content.
      
          Here  it's  again.  The  complete regression test passwd with
          only some  float  diffs.  createuser  and  destroyuser  work.
          pg_shadow cannot be read by ordinary user.
      780068f8
  9. 24 2月, 1998 2 次提交
  10. 20 2月, 1998 3 次提交
  11. 30 12月, 1997 1 次提交
    • M
      Slightly delayed patches from Todd...damn holidays :) · 3c1332e5
      Marc G. Fournier 提交于
        o  A new patch that contains the following changes:
              -- The pg_pwd file is now cached in the postmaster's memory.
              -- pg_pwd is reloaded when the postmaster detects a flag file creat()'ed
                 by a backend.
              -- qsort() is used to sort loaded password entries, and bsearch() is
                 is used to find entries in the pg_pwd cache.
              -- backends now copy the pg_user relation to pg_pwd.pid, and then
                 rename the temp file to be pg_pwd.
              -- The delimiter for pg_pwd has been changed to a tab character.
      3c1332e5
  12. 04 12月, 1997 1 次提交
  13. 16 11月, 1997 3 次提交
  14. 15 11月, 1997 1 次提交
  15. 13 11月, 1997 1 次提交
  16. 19 2月, 1997 1 次提交
  17. 14 1月, 1997 2 次提交
  18. 11 1月, 1997 1 次提交
    • B
      I found the following bugs in the version 6.0 (dated 961229). · 90ff767d
      Bruce Momjian 提交于
      At least the first two should be fixed before the final release of 6.0.
      
      1)      There is a mismatch between the type declared in the catalog for
              the input/output attributes of pg_type and the actual type of
              values stored in the table.  The type of typinput, typoutput,
              typsend and typreceive are declared oid (26) while the values are
              regproc (24).  The error was there also in previous versions but
              nobody noticed it until an Assert has been added in ExecEvalVar.
              The effect is that it is now impossible to replace the typoutput
              of existing data types with new procs.
      
      2)      The identd hba fails after the first time because the data read
              from the identd socket is not zero-terminated and strlen reports
              an incorrect length if the stack contains garbage, which usually
              happens after the first connection has been made.
      
      3)      The new initdb wants to create itself the data directory. This
              implies that the parent directory must be writable by postgres and
              this may not always be desirable.  A better solution would be to
              allow the directory to be created by root and then filled by initdb.
              It would also nice to have some reasonable default for PGLIB and
              PGDATA like the previous version did.  This applies also to the
              postmaster executable.
      90ff767d
  19. 23 12月, 1996 1 次提交
  20. 10 12月, 1996 1 次提交
  21. 29 11月, 1996 1 次提交
  22. 27 11月, 1996 1 次提交
  23. 26 11月, 1996 1 次提交
  24. 25 11月, 1996 1 次提交
  25. 23 11月, 1996 1 次提交
  26. 22 11月, 1996 1 次提交
  27. 14 11月, 1996 1 次提交
  28. 11 11月, 1996 1 次提交