1. 15 6月, 2006 16 次提交
  2. 14 6月, 2006 3 次提交
  3. 13 6月, 2006 5 次提交
  4. 12 6月, 2006 2 次提交
  5. 11 6月, 2006 3 次提交
    • T
      Fix Assert failure when a fastpath function call is attempted inside an · bf64a379
      Tom Lane 提交于
      already-aborted transaction block.  GetSnapshotData throws an Assert if
      not in a valid transaction; hence we mustn't attempt to set a snapshot
      for the function until after checking for aborted transaction.  This is
      harmless AFAICT if Asserts aren't enabled (GetSnapshotData will compute
      a bogus snapshot, but it doesn't matter since HandleFunctionRequest will
      throw an error shortly anywy).  Hence, not a major bug.
      
      Along the way, add some ability to log fastpath calls when statement
      logging is turned on.  This could probably stand to be improved further,
      but not logging anything is clearly undesirable.
      
      Backpatched as far as 8.0; bug doesn't exist before that.
      bf64a379
    • B
      Remove pg_dump wording: · 807bfa58
      Bruce Momjian 提交于
      <   pg_get_tabledef(), pg_get_domaindef(), pg_get_functiondef(), and
      <   make use of them in pg_dump
      >   pg_get_tabledef(), pg_get_domaindef(), pg_get_functiondef()
      807bfa58
    • B
      Add: · 0d001c86
      Bruce Momjian 提交于
      <   pg_get_tabledef(), pg_get_domaindef(), pg_get_functiondef()
      >   pg_get_tabledef(), pg_get_domaindef(), pg_get_functiondef(), and
      >   make use of them in pg_dump
      0d001c86
  6. 10 6月, 2006 4 次提交
    • T
      Repair remarkably-inefficient query for dumping large object comments: it · b773987f
      Tom Lane 提交于
      was invoking obj_description() for each large object chunk, instead of once
      per large object.  This code is new as of 8.1, which may explain why the
      problem hadn't been noticed already.
      b773987f
    • T
      Revert sampling patch for EXPLAIN ANALYZE; it turns out to be too unreliable · 5de0cbdf
      Tom Lane 提交于
      because node timing is much less predictable than the patch expects.  I kept
      the API change for InstrStopNode, however.
      5de0cbdf
    • B
      Cleanups: · 91431449
      Bruce Momjian 提交于
      < 	* Allow a database in tablespace t1 with tables created in
      > 	o Allow a database in tablespace t1 with tables created in
      125c125
      < 	* Allow reporting of which objects are in which tablespaces
      > 	o Allow reporting of which objects are in which tablespaces
      593c593
      < 	* Allow GRANT/REVOKE permissions to be inherited by objects based on
      > 	o Allow GRANT/REVOKE permissions to be inherited by objects based on
      596c596
      < 	* Allow SERIAL sequences to inherit permissions from the base table?
      > 	o Allow SERIAL sequences to inherit permissions from the base table?
      91431449
    • B
      Cleanup: · c0ba4829
      Bruce Momjian 提交于
      < * -%Allow pooled connections to list all prepared statements
      > * -Allow pooled connections to list all prepared statements
      c0ba4829
  7. 09 6月, 2006 7 次提交