1. 06 2月, 2006 3 次提交
  2. 05 2月, 2006 6 次提交
  3. 04 2月, 2006 8 次提交
  4. 03 2月, 2006 5 次提交
  5. 02 2月, 2006 6 次提交
  6. 01 2月, 2006 6 次提交
    • B
      Fix const cast in get_progname(). · 802c7aa3
      Bruce Momjian 提交于
      Backpatch.
      802c7aa3
    • B
      Set progname early in the postmaster/postgres binary, rather than doing · 62a14203
      Bruce Momjian 提交于
      it later.  This fixes a problem where EXEC_BACKEND didn't have progname
      set, causing a segfault if log_min_messages was set below debug2 and our
      own snprintf.c was being used.
      
      Also alway strdup() progname.
      
      Backpatch to 8.1.X and 8.0.X.
      62a14203
    • B
      Move items: · c6ef3264
      Bruce Momjian 提交于
      > * Add SQL99 WITH clause to SELECT
      > * Add SQL99 WITH RECURSIVE to SELECT
      < * Add SQL99 WITH clause to SELECT
      < * Add SQL99 WITH RECURSIVE to SELECT
      c6ef3264
    • B
      Add: · 5eb29fea
      Bruce Momjian 提交于
      >
      > 	o Prevent tab completion of SET TRANSACTION from querying the
      > 	  database and therefore preventing the transaction isolation
      > 	  level from being set.
      >
      > 	  Currently, SET <tab> causes a database lookup to check all
      > 	  supported session variables.  This query causes problems
      > 	  because setting the transaction isolation level must be the
      > 	  first statement of a transaction.
      5eb29fea
    • T
      6851baed
    • T
      Restructure planner's handling of inheritance. Rather than processing · 8a1468af
      Tom Lane 提交于
      inheritance trees on-the-fly, which pretty well constrained us to considering
      only one way of planning inheritance, expand inheritance sets during the
      planner prep phase, and build a side data structure that can be consulted
      later to find which RTEs are members of which inheritance sets.  As proof of
      concept, use the data structure to plan joins against inheritance sets more
      efficiently: we can now use indexes on the set members in inner-indexscan
      joins.  (The generated plans could be improved further, but it'll take some
      executor changes.)  This data structure will also support handling UNION ALL
      subqueries in the same way as inheritance sets, but that aspect of it isn't
      finished yet.
      8a1468af
  7. 31 1月, 2006 2 次提交
  8. 30 1月, 2006 3 次提交
  9. 29 1月, 2006 1 次提交
    • A
      · 4400ca2b
      Andrew Dunstan 提交于
      Undo perl's nasty locale setting on Windows. Since we can't do that as
      elsewhere by setting the environment appropriately, we make perl do it
      right after interpreter startup by calling its POSIX::setlocale().
      4400ca2b