1. 07 8月, 2000 1 次提交
  2. 01 8月, 2000 1 次提交
    • P
      - Added --create, --no-owner, --superuser, --no-reconnect (pg_dump & pg_restore) · 92bd532c
      Philip Warner 提交于
      - Added code to dump 'Create Schema' statement (pg_dump)
      - Don't bother to disable/enable triggers if we don't have a superuser (pg_restore)
      - Cleaned up code for reconnecting to database.
      - Force a reconnect as superuser before enabling/disabling triggers.
      - Added & Removed --throttle (pg_dump)
      - Fixed minor bug in language dumping code: expbuffres were not being reset.
      - Fixed version number initialization in _allocAH (pg_backup_archiver.c)
      - Added second connection when restoring BLOBs to allow temp. table to survive
        (db reconnection causes temp tables to be lost).
      92bd532c
  3. 24 7月, 2000 1 次提交
  4. 21 7月, 2000 1 次提交
  5. 17 7月, 2000 1 次提交
    • T
      Revise aggregate functions per earlier discussions in pghackers. · bec98a31
      Tom Lane 提交于
      There's now only one transition value and transition function.
      NULL handling in aggregates is a lot cleaner.  Also, use Numeric
      accumulators instead of integer accumulators for sum/avg on integer
      datatypes --- this avoids overflow at the cost of being a little slower.
      Implement VARIANCE() and STDDEV() aggregates in the standard backend.
      
      Also, enable new LIKE selectivity estimators by default.  Unrelated
      change, but as long as I had to force initdb anyway...
      bec98a31
  6. 11 7月, 2000 1 次提交
  7. 07 7月, 2000 1 次提交
  8. 05 7月, 2000 2 次提交
  9. 04 7月, 2000 1 次提交
  10. 02 7月, 2000 1 次提交
  11. 15 6月, 2000 1 次提交
    • P
      Big warnings cleanup for Solaris/GCC. Down to about 40 now, but · 44d1abeb
      Peter Eisentraut 提交于
      we'll get there one day.
      
      Use `cat' to create aclocal.m4, not `aclocal'. Some people don't
      have automake installed.
      
      Only run the autoconf rule in the top-level GNUmakefile if the
      invoker specified `make configure', don't run it automatically
      because of CVS timestamp skew.
      44d1abeb
  12. 10 6月, 2000 1 次提交
  13. 09 6月, 2000 1 次提交
  14. 02 6月, 2000 1 次提交
  15. 29 5月, 2000 1 次提交
  16. 14 4月, 2000 1 次提交
  17. 13 4月, 2000 1 次提交
  18. 04 4月, 2000 1 次提交
  19. 08 2月, 2000 1 次提交
  20. 05 2月, 2000 1 次提交
  21. 02 2月, 2000 1 次提交
  22. 30 1月, 2000 1 次提交
    • P
      A few minor psql enhancements · 2b84cbb6
      Peter Eisentraut 提交于
      Initdb help correction
      Changed end/abort to commit/rollback and changed related notices
      Commented out way old printing functions in libpq
      Fixed a typo in alter table / alter column
      2b84cbb6
  23. 27 1月, 2000 1 次提交
  24. 26 1月, 2000 1 次提交
    • B
      Add: · 5c25d602
      Bruce Momjian 提交于
        * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
      
      to all files copyright Regents of Berkeley.  Man, that's a lot of files.
      5c25d602
  25. 25 1月, 2000 1 次提交
  26. 20 1月, 2000 1 次提交
  27. 19 1月, 2000 2 次提交
    • P
    • B
      Bruce, · 2eebcdde
      Bruce Momjian 提交于
      Attached is a patch which patches cleanly against the Sunday afternoon
      snapshot. It modifies pg_dump to dump COMMENT ON statements for
      user-definable descriptions. In addition, it also modifies comment.c so
      that the operator behavior is as Peter E. would like: a comment on an
      operator is applied to the underlying function.
      
      Thanks,
      
      Mike Mascari
      2eebcdde
  28. 18 1月, 2000 2 次提交
  29. 16 1月, 2000 1 次提交
    • T
      Clean up pg_dump coredumps caused by change of output formatting for · 97e82dc7
      Tom Lane 提交于
      oidvector/int2vector.  pg_dump code was assuming that it would see
      exactly FUNC_MAX_ARGS integers in the string returned by the backend.
      That's no longer true.  (Perhaps that change wasn't such a good idea
      after all --- will it break any other applications??)
      97e82dc7
  30. 11 1月, 2000 2 次提交
  31. 28 12月, 1999 1 次提交
  32. 27 12月, 1999 2 次提交
    • B
      Hi, all, · 63549862
      Bruce Momjian 提交于
      This is the patch for the final bit.  Sorry that it's separate.
      
      Cheers...
      
      
      MikeA
      63549862
    • B
      Hi, all · 24a0f021
      Bruce Momjian 提交于
      I finally got around to schlepping through pg_dump, to finish what I started
      about three months (or more) ago.  Attached is a gzipped diff file to apply
      in the bin/pg_dump directory.  This should remove all string length
      dependencies, except one, which I'm working on.  It has been through some
      rudimentary unit testing, but that's about it, so if any of you would give
      it a more strenuous run-through, I'd be grateful for the feedback.
      
      Cheers...
      
       Ansley, Michael
      24a0f021
  33. 17 12月, 1999 1 次提交
    • B
      Hi, · 5ca971a1
      Bruce Momjian 提交于
      I sending promised patch with:
      
              * getopt_long() - for pg_dump (portable)
      
              * and "Usage: " changes in scripts in src/bin/
                - this changes are cosmetic only, not change any
                feature ...etc.
      
       All PostgreSQL routines (scripts) support now long options and
      help's output is alike for all scripts and all support -? or --help.
      
                                                      Karel
      
      Karel Zak <zakkr@zf.jcu.cz>              http://home.zf.jcu.cz/~zakkr/
      5ca971a1
  34. 11 12月, 1999 1 次提交
    • B
      This takes care of TODO item · e639a1a6
      Bruce Momjian 提交于
      * pg_dump should preserve primary key information
      
      Also a couple of warnings removed.
      
      --
      Peter Eisentraut                  Sernanders väg 10:115
      e639a1a6
  35. 23 11月, 1999 1 次提交