Skip to content
Snippets Groups Projects
  1. Oct 24, 2000
    • Tom Lane's avatar
      Major overhaul of large-object implementation, by Denis Perchine with · 4f44aa04
      Tom Lane authored
      kibitzing from Tom Lane.  Large objects are now all stored in a single
      system relation "pg_largeobject" --- no more xinv or xinx files, no more
      relkind 'l'.  This should offer substantial performance improvement for
      large numbers of LOs, since there won't be directory bloat anymore.
      It'll also fix problems like running out of locktable space when you
      access thousands of LOs in one transaction.
      Also clean up cruft in read/write routines.  LOs with "holes" in them
      (never-written byte ranges) now work just like Unix files with holes do:
      a hole reads as zeroes but doesn't occupy storage space.
      INITDB forced!
      4f44aa04
  2. Oct 20, 2000
  3. Oct 04, 2000
  4. Sep 29, 2000
  5. Sep 18, 2000
  6. Aug 31, 2000
  7. Aug 23, 2000
  8. Aug 03, 2000
  9. Jul 28, 2000
  10. Jul 22, 2000
    • Tom Lane's avatar
      Arrays are toastable. (At least if you initdb, which I didn't force.) · d0e17e21
      Tom Lane authored
      Remove a bunch of crufty code for large-object-based arrays, which is
      superseded by TOAST and likely hasn't worked in a long time anyway.
      Clean up array code a little, and in particular eliminate its habit
      of scribbling on the input array (ie, modifying the input tuple :-().
      d0e17e21
  11. Jul 17, 2000
  12. Jul 16, 2000
  13. Jul 13, 2000
    • Peter Eisentraut's avatar
      Remove a bunch of unused configure tests, in particular cases where · cb292206
      Peter Eisentraut authored
      * the result is not recorded anywhere
      * the result is not used anywhere
      * the result is only used in some places, whereas others have been getting away with it
      * the result is used improperly
      
      Also make command line options handling a little better (e.g., --disable-locale,
      while redundant, should really still *dis*able).
      cb292206
  14. Jul 09, 2000
    • Peter Eisentraut's avatar
      Another round of those unportable config/build changes :-/ · 74618e2b
      Peter Eisentraut authored
      * Add option to build with OpenSSL out of the box. Fix thusly exposed
        bit rot. Although it compiles now, getting this to do something
        useful is left as an exercise.
      
      * Fix Kerberos options to defer checking for required libraries until
        all the other libraries are checked for.
      
      * Change default odbcinst.ini and krb5.srvtab path to PREFIX/etc.
      
      * Install work around for Autoconf's install-sh relative path anomaly.
        Get rid of old INSTL_*_OPTS variables, now that we don't need them
        anymore.
      
      * Use `gunzip -c' instead of g?zcat. Reportedly broke on AIX.
      
      * Look for only one of readline.h or readline/readline.h, not both.
      
      * Make check for PS_STRINGS cacheable. Don't test for the header files
        separately.
      
      * Disable fcntl(F_SETLK) test on Linux.
      
      * Substitute the standard GCC warnings set into CFLAGS in configure,
        don't add it on in Makefile.global.
      
      * Sweep through contrib tree to teach makefiles standard semantics.
      
      ... and in completely unrelated news:
      
      * Make postmaster.opts arbitrary options-aware. I still think we need to
        save the environment as well.
      74618e2b
  15. Jul 07, 2000
  16. Jul 06, 2000
  17. Jul 04, 2000
  18. Jul 03, 2000
    • Bruce Momjian's avatar
      Very small changes in the contrib's pg_dumplo in the attache. · d66a8c7c
      Bruce Momjian authored
       And:
      
       Note, Bruce I found in the contrib tree any files that we forget
      remove during contrib cleaning. Please remove these files:
      
      contrib/lo/test.sql
      contrib/pg_dumplo/Makefile.out
      contrib/pgbench/pgbench_jis.doc
      contrib/spi/new_example.example
      contrib/spi/README.MAX
      
      Thanks.
      
                                      Karel
      d66a8c7c
  19. Jun 19, 2000
  20. Jun 16, 2000
  21. Jun 15, 2000
  22. Jun 12, 2000
  23. Jun 11, 2000
    • Tom Lane's avatar
      Update sequence-related functions to new fmgr style. Remove downcasing, · 3477957b
      Tom Lane authored
      quote-stripping, and acl-checking tasks for these functions from the
      parser, and do them at function execution time instead.  This fixes
      the failure of pg_dump to produce correct output for nextval(Foo)
      used in a rule, and also eliminates the restriction that the argument
      of these functions must be a parse-time constant.
      3477957b
  24. Jun 09, 2000
  25. May 29, 2000
  26. May 18, 2000
  27. May 16, 2000
  28. May 05, 2000
  29. Apr 29, 2000
Loading