1. 11 4月, 2004 1 次提交
  2. 07 4月, 2004 1 次提交
    • B
      > >>1. change the type of "log_statement" option from boolean to string, · 6a25c6e1
      Bruce Momjian 提交于
      > >>with allowed values of "all, mod, ddl, none" with default "none".
      
      OK, here is a patch that implements #1.  Here is sample output:
      
              test=> set client_min_messages = 'log';
              SET
              test=> set log_statement = 'mod';
              SET
              test=> select 1;
               ?column?
              ----------
                      1
              (1 row)
      
              test=> update test set x=1;
              LOG:  statement: update test set x=1;
              ERROR:  relation "test" does not exist
              test=> update test set x=1;
              LOG:  statement: update test set x=1;
              ERROR:  relation "test" does not exist
              test=> copy test from '/tmp/x';
              LOG:  statement: copy test from '/tmp/x';
              ERROR:  relation "test" does not exist
              test=> copy test to  '/tmp/x';
              ERROR:  relation "test" does not exist
              test=> prepare xx as select 1;
              PREPARE
              test=> prepare xx as update x set y=1;
              LOG:  statement: prepare xx as update x set y=1;
              ERROR:  relation "x" does not exist
              test=> explain analyze select 1;;
                                                   QUERY PLAN
              ------------------------------------------------------------------------------------
               Result  (cost=0.00..0.01 rows=1 width=0) (actual time=0.006..0.007 rows=1 loops=1)
               Total runtime: 0.046 ms
              (2 rows)
      
              test=> explain analyze update test set x=1;
              LOG:  statement: explain analyze update test set x=1;
              ERROR:  relation "test" does not exist
              test=> explain update test set x=1;
              ERROR:  relation "test" does not exist
      
      It checks PREPARE and EXECUTE ANALYZE too.  The log_statement values are
      'none', 'mod', 'ddl', and 'all'.  For 'all', it prints before the query
      is parsed, and for ddl/mod, it does it right after parsing using the
      node tag (or command tag for CREATE/ALTER/DROP), so any non-parse errors
      will print after the log line.
      6a25c6e1
  3. 25 3月, 2004 1 次提交
  4. 22 3月, 2004 1 次提交
  5. 15 3月, 2004 1 次提交
  6. 09 3月, 2004 1 次提交
    • B
      Add: · 2d3fe86b
      Bruce Momjian 提交于
      #log_line_prefix = ''         # e.g. '<%u%%%d> '
                                    # %u=user name %d=database name
                                    # %r=remote host and port
                                    # %p=PID %t=timestamp %i=command tag
                                    # %c=session id %l=session line number
                                    # %s=session start timestamp
                                    # %x=stop here in non-session processes
                                    # %%='%'
      
      Andrew Dunstan
      2d3fe86b
  7. 21 2月, 2004 1 次提交
  8. 17 2月, 2004 3 次提交
  9. 07 2月, 2004 1 次提交
  10. 04 2月, 2004 1 次提交
    • T
      Rename SortMem and VacuumMem to work_mem and maintenance_work_mem. · 391c3811
      Tom Lane 提交于
      Make btree index creation and initial validation of foreign-key constraints
      use maintenance_work_mem rather than work_mem as their memory limit.
      Add some code to guc.c to allow these variables to be referenced by their
      old names in SHOW and SET commands, for backwards compatibility.
      391c3811
  11. 29 1月, 2004 1 次提交
    • T
      Review uses of IsUnderPostmaster, change some tests to look at · 2f0d43b2
      Tom Lane 提交于
      whereToSendOutput instead because they are really inquiring about
      the correct client communication protocol.  Update some comments.
      This is pointing towards supporting regular FE/BE client protocol
      in a standalone backend, per discussion a month or so back.
      2f0d43b2
  12. 27 1月, 2004 3 次提交
    • B
      [all] Removed call to getppid in SendPostmasterSignal, replacing with a · eec08b95
      Bruce Momjian 提交于
      PostmasterPid variable, which gets set (early) in PostmasterMain
      getppid would not be the postmaster?
      
      [fork/exec] Implements processCancelRequest by keeping an array of
      
      pid/cancel_key structs in shared mem
      
      [fork/exec] Moves AttachSharedMemoryAndSemaphores call for backends into
      SubPostmasterMain
      
      [win32] Implements reaper/waitpid by keeping an arrays of children
      pids,handles in postmaster local mem
            - this item is largely untested, for reasons which should be
      obvious, but appears sound
      
      [win32/all] Added extern for pgpipe in Win32 case, and changed the second
      pipe call (which seems to have been missed earlier) to pgpipe
      
      [win32] #define'd ftruncate to chsize in the Win32 case
      
      [win32] PG_USLEEP for Win32 has a misplaced paren. Fixed.
      
      [win32] DLLIMPORT handling for MingW case
      
      
      Claudio Natoli
      eec08b95
    • B
      Back out win32 patch so we can apply it separately. · ede3b762
      Bruce Momjian 提交于
      ede3b762
    • B
      Attached is a patch that fixes some trivial typos and alignment. Please · f4921e5c
      Bruce Momjian 提交于
      apply.
      
      Alvaro Herrera
      f4921e5c
  13. 07 1月, 2004 2 次提交
  14. 25 12月, 2003 1 次提交
  15. 21 12月, 2003 1 次提交
  16. 02 12月, 2003 1 次提交
  17. 30 11月, 2003 2 次提交
  18. 24 11月, 2003 1 次提交
  19. 20 10月, 2003 1 次提交
  20. 19 10月, 2003 1 次提交
  21. 17 10月, 2003 1 次提交
    • T
      Fix bad interaction between NOTIFY processing and V3 extended query · 90b22029
      Tom Lane 提交于
      protocol, per report from Igor Shevchenko.  NOTIFY thought it could
      do its thing if transaction blockState is TBLOCK_DEFAULT, but in
      reality it had better check the low-level transaction state is
      TRANS_DEFAULT as well.  Formerly it was not possible to wait for the
      client in a state where the first is true and the second is not ...
      but now we can have such a state.  Minor cleanup in StartTransaction()
      as well.
      90b22029
  22. 09 10月, 2003 1 次提交
  23. 08 10月, 2003 1 次提交
  24. 04 10月, 2003 1 次提交
  25. 02 10月, 2003 1 次提交
  26. 30 9月, 2003 1 次提交
  27. 29 9月, 2003 1 次提交
  28. 27 9月, 2003 1 次提交
  29. 25 9月, 2003 2 次提交
    • P
      Message editing: remove gratuitous variations in message wording, standardize · feb4f44d
      Peter Eisentraut 提交于
      terms, add some clarifications, fix some untranslatable attempts at dynamic
      message building.
      feb4f44d
    • T
      Repair some REINDEX problems per recent discussions. The relcache is · a56a016c
      Tom Lane 提交于
      now able to cope with assigning new relfilenode values to nailed-in-cache
      indexes, so they can be reindexed using the fully crash-safe method.  This
      leaves only shared system indexes as special cases.  Remove the 'index
      deactivation' code, since it provides no useful protection in the shared-
      index case.  Require reindexing of shared indexes to be done in standalone
      mode, but remove other restrictions on REINDEX.  -P (IgnoreSystemIndexes)
      now prevents using indexes for lookups, but does not disable index updates.
      It is therefore safe to allow from PGOPTIONS.  Upshot: reindexing system catalogs
      can be done without a standalone backend for all cases except
      shared catalogs.
      a56a016c
  30. 14 9月, 2003 1 次提交
  31. 03 9月, 2003 1 次提交
    • T
      Cause standalone backend (including bootstrap case) to read the GUC · b916cc43
      Tom Lane 提交于
      config file if it exists.  This was already discussed as being a good
      idea, and now seems the cleanest way to deal with initdb-time failures
      on machines with small SHMMAX.  (The submitted patches instead modified
      initdb.sh to pass the correct sizing parameters, but that would still
      leave standalone backends prone to failure later.  An admin who needs
      to use a standalone backend has enough trouble already, he shouldn't
      have to manually configure its shmem settings...)
      b916cc43
  32. 26 8月, 2003 1 次提交
  33. 14 8月, 2003 1 次提交