1. 29 Jun, 2000 2 commits
  2. 28 Jun, 2000 5 commits
    • Peter Eisentraut's avatar
      Makefile cleanup for interface tree. Now essentially with all the · 44f64dd3
      Peter Eisentraut authored
      standard targets and behaviour. Replaced Makefile.in's with
      Makefile's and declared the respective variables in Makefile.global.
      
      maintainer-clean target now available at top level, although it does
      not work in the backend tree yet.
      
      Cleanup pass over Makefile.shlib, renamed some targets and variables.
      The shared library symlink tests are now done by make, not the shell.
      
      ecpg: Remove one warning in sloppy flex output.
      
      PL/Perl and Perl interface: the MakeMaker documentation is confusing,
      the realclean target *does* "delete derived files", but it also
      uninstalls them. Don't use that.
      
      The submake targets in the various bin directories that update libpq
      should `make all', not `make libpq.a'. That is a) unportable, and
      b) doesn't build the shared library.
      44f64dd3
    • Tom Lane's avatar
      5ac1eac2
    • Tom Lane's avatar
      Repair incorrect assumption that all versions of 'install' know · 13612a97
      Tom Lane authored
      how to install multiple files in one invocation.
      13612a97
    • Tom Lane's avatar
      Call me silly, but I think it would be a good idea if initdb and other · f0b0016e
      Tom Lane authored
      scripts are executable after being installed.  Latest changes got the
      permissions wrong (non executable).
      f0b0016e
    • Tom Lane's avatar
      First phase of memory management rewrite (see backend/utils/mmgr/README · 1aebc361
      Tom Lane authored
      for details).  It doesn't really do that much yet, since there are no
      short-term memory contexts in the executor, but the infrastructure is
      in place and long-term contexts are handled reasonably.  A few long-
      standing bugs have been fixed, such as 'VACUUM; anything' in a single
      query string crashing.  Also, out-of-memory is now considered a
      recoverable ERROR, not FATAL.
      Eliminate a large amount of crufty, now-dead code in and around
      memory management.
      Fix problem with holding off SIGTRAP, SIGSEGV, etc in postmaster and
      backend startup.
      1aebc361
  3. 27 Jun, 2000 2 commits
  4. 26 Jun, 2000 1 commit
  5. 25 Jun, 2000 2 commits
  6. 24 Jun, 2000 1 commit
  7. 22 Jun, 2000 1 commit
    • Peter Eisentraut's avatar
      Second pass over run-time configuration system. Adjust priorities on some · c4465095
      Peter Eisentraut authored
      option settings. Sort out SIGHUP vs BACKEND -- there is no total ordering
      here, so make explicit checks. Add comments explaining all of this.
      Removed permissions check on SHOW command.
      
      Add examine_subclass to the game, rename to SQL_inheritance to fit the
      official data model better. Adjust documentation.
      
      Standalone backend needs to reset all options before it starts. To
      facilitate that, have IsUnderPostmaster be set by the postmaster itself,
      don't wait for the magic -p switch.
      
      Also make sure that all environment variables and argv's survive
      init_ps_display(). Use strdup where necessary.
      
      Have initdb make configuration files (postgresql.conf, pg_hba.conf) mode
      0600 -- having configuration files is no fun if you can't edit them.
      c4465095
  8. 21 Jun, 2000 1 commit
  9. 20 Jun, 2000 5 commits
  10. 19 Jun, 2000 11 commits
  11. 18 Jun, 2000 3 commits
    • Tom Lane's avatar
      Reimplement nodeMaterial to use a temporary BufFile (or even memory, if the · 1ee26b77
      Tom Lane authored
      materialized tupleset is small enough) instead of a temporary relation.
      This was something I was thinking of doing anyway for performance, and Jan
      says he needs it for TOAST because he doesn't want to cope with toasting
      noname relations.  With this change, the 'noname table' support in heap.c
      is dead code, and I have accordingly removed it.  Also clean up 'noname'
      plan handling in planner --- nonames are either sort or materialize plans,
      and it seems less confusing to handle them separately under those names.
      1ee26b77
    • Peter Eisentraut's avatar
      Separated set constraints and set transaction reference pages, revised set · 2c0edb3c
      Peter Eisentraut authored
      reference page to new configuration system. Big update to administrator's
      guide, chapters Runtime environment, Client authentication, and User
      management, the latter two were part of the old Security chapter.
      2c0edb3c
    • Tom Lane's avatar
      Reinstate BufFileTell(). · b4e906f1
      Tom Lane authored
      b4e906f1
  12. 17 Jun, 2000 4 commits
    • Tom Lane's avatar
      Get rid of IndexIsUniqueNoCache() kluge by the simple expedient of · edf0b5f0
      Tom Lane authored
      passing the index-is-unique flag to index build routines (duh! ...
      why wasn't it done this way to begin with?).  Aside from eliminating
      an eyesore, this should save a few milliseconds in btree index creation
      because a full scan of pg_index is not needed any more.
      edf0b5f0
    • Tom Lane's avatar
      Fix performance problems with pg_index lookups (see, for example, · d03a933e
      Tom Lane authored
      discussion of 5/19/00).  pg_index is now searched for indexes of a
      relation using an indexscan.  Moreover, this is done once and cached
      in the relcache entry for the relation, in the form of a list of OIDs
      for the indexes.  This list is used by the parser and executor to drive
      lookups in the pg_index syscache when they want to know the properties
      of the indexes.  Net result: index information will be fully cached
      for repetitive operations such as inserts.
      d03a933e
    • Tom Lane's avatar
      Clean out another pocket of functions called via nonspecific function · 9cf80f2f
      Tom Lane authored
      pointers, namely the catcache tuple fetch routines.  Also get rid of
      the unused and possibly confusing 'size' field in struct cachedesc.
      Since it doesn't allow for variable-length fields, anyone who
      actually trusted it would likely be making a mistake...
      9cf80f2f
    • Peter Eisentraut's avatar
      Remove fmgrstamp-h business -- not needed and confusing · 1652d433
      Peter Eisentraut authored
      Add options to configure to automatically build for Kerberos
      support; no more editing of make files.
      1652d433
  13. 16 Jun, 2000 2 commits