Skip to content
Snippets Groups Projects
  1. Dec 07, 2003
  2. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  3. Nov 26, 2003
  4. Sep 27, 2003
  5. Aug 04, 2003
  6. Aug 01, 2003
  7. Jun 10, 2003
  8. May 14, 2003
  9. Nov 27, 2002
  10. Oct 20, 2002
  11. Oct 18, 2002
  12. Oct 07, 2002
  13. Sep 04, 2002
  14. Aug 15, 2002
    • Bruce Momjian's avatar
      The attached patch changes most of the usages of sprintf() to · 66eb8df6
      Bruce Momjian authored
      snprintf() in contrib/. I didn't touch the places where pointer
      arithmatic was being used, or other areas where the fix wasn't
      trivial. I would think that few, if any, of the usages of sprintf()
      were actually exploitable, but it's probably better to be paranoid...
      
      Neil Conway
      66eb8df6
  15. Jul 20, 2002
    • Tatsuo Ishii's avatar
      Apply patches from Neil Conway. · cdf4b9af
      Tatsuo Ishii authored
      > Hi Tatsuo,
      >
      > I've attached a patch for the version of pgbench in CVS. It includes the
      > following changes:
      >
      >     - fix some spelling mistakes, indentation stuff, etc.
      >
      >     - minor code cleanup -- (void) args instead of (), etc.
      >
      >     - allocate the state array dynamically, so that it is only as
      >     large as needed. This reduces the memory consumption of pgbench
      >     slightly, and makes a larger MAXCLIENTS setting possible
      >
      >     - (the only controversial change) add an option "-l" to log
      >     transaction latencies to a file. The "transaction latency"
      >     is the time between when the BEGIN is issued and the transaction
      >     commits. This is written to a file, along with the client #
      >     and the transaction #. The data in the file can then be used
      >     for things like:
      >
      >         - consistency analysis: is the TPS the same through the
      >         entire run of pgbench, or does it change?
      >
      >         - more detailed stats: what is the average latency, worse-case
      >         latency, best-case latency?
      >
      >         - graphs: feed the data to gnuplot, graph latency versus. time
      >
      >         - etc.
      >
      >     I was going to store this data in memory and write it to disk
      >     at the end of the pgbench run, but that isn't feasible because
      >     the data can be very large: for example, ~70MB if benchmarking
      >     128 clients doing 100,000 transactions each.
      >
      > Cheers,
      >
      > Neil
      cdf4b9af
  16. May 20, 2002
  17. Feb 24, 2002
  18. Feb 18, 2002
  19. Jan 10, 2002
  20. Nov 05, 2001
  21. Oct 25, 2001
  22. Oct 24, 2001
  23. Sep 09, 2001
  24. Sep 06, 2001
  25. Aug 01, 2001
  26. Feb 20, 2001
  27. Feb 17, 2001
  28. Feb 16, 2001
  29. Feb 10, 2001
    • Tom Lane's avatar
      Restructure the key include files per recent pghackers discussion: there · d08741ea
      Tom Lane authored
      are now separate files "postgres.h" and "postgres_fe.h", which are meant
      to be the primary include files for backend .c files and frontend .c files
      respectively.  By default, only include files meant for frontend use are
      installed into the installation include directory.  There is a new make
      target 'make install-all-headers' that adds the whole content of the
      src/include tree to the installed fileset, for use by people who want to
      develop server-side code without keeping the complete source tree on hand.
      Cleaned up a whole lot of crufty and inconsistent header inclusions.
      d08741ea
  30. Dec 04, 2000
  31. Nov 01, 2000
  32. Oct 20, 2000
  33. Sep 29, 2000
  34. Aug 31, 2000
  35. 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
  36. 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
  37. 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
  38. Jun 19, 2000
Loading