1. 14 6月, 2012 2 次提交
  2. 11 6月, 2012 2 次提交
  3. 16 5月, 2012 1 次提交
  4. 03 5月, 2012 2 次提交
  5. 30 4月, 2012 1 次提交
  6. 28 4月, 2012 1 次提交
  7. 25 4月, 2012 1 次提交
    • P
      entab: Improve makefile · 8bd44677
      Peter Eisentraut 提交于
      A few simplifications and stylistic improvements, found while grepping
      around for makefile problems elsewhere.
      8bd44677
  8. 24 4月, 2012 1 次提交
  9. 16 4月, 2012 1 次提交
    • H
      Install plpgsql.h to to include/server at "make install". · 49440fff
      Heikki Linnakangas 提交于
      The header file is needed by any module that wants to use the PL/pgSQL
      instrumentation plugin interface. Most notably, the pldebugger plugin needs
      this. With this patch, it can be built using pgxs, without having the full
      server source tree available.
      49440fff
  10. 29 3月, 2012 2 次提交
  11. 22 3月, 2012 1 次提交
  12. 29 2月, 2012 2 次提交
    • T
      Fix MSVC builds for previous patch's addition of a src/port file. · 8cae5810
      Tom Lane 提交于
      (And why in the world is this OBJS list not being scraped from the
      corresponding Makefile?)
      8cae5810
    • T
      Move CRC tables to libpgport, and provide them in a separate include file. · 5c02a00d
      Tom Lane 提交于
      This makes it much more convenient to build tools for Postgres that are
      separately compiled and require a matching CRC implementation.
      
      To prevent multiple copies of the CRC polynomial tables being introduced
      into the postgres binaries, they are now included in the static library
      libpgport that is mainly meant for replacement system functions.  That
      seems like a bit of a kludge, but there's no better place.
      
      This cleans up building of the tools pg_controldata and pg_resetxlog,
      which previously had to build their own copies of pg_crc.o.
      
      In the future, external programs that need access to the CRC tables can
      include the tables directly from the new header file pg_crc_tables.h.
      
      Daniel Farina, reviewed by Abhijit Menon-Sen and Tom Lane
      5c02a00d
  13. 27 2月, 2012 1 次提交
  14. 25 2月, 2012 2 次提交
  15. 16 2月, 2012 1 次提交
    • R
      Speed up in-memory tuplesorting. · 337b6f5e
      Robert Haas 提交于
      Per recent work by Peter Geoghegan, it's significantly faster to
      tuplesort on a single sortkey if ApplySortComparator is inlined into
      quicksort rather reached via a function pointer.  It's also faster
      in general to have a version of quicksort which is specialized for
      sorting SortTuple objects rather than objects of arbitrary size and
      type.  This requires a couple of additional copies of the quicksort
      logic, which in this patch are generate using a Perl script.  There
      might be some benefit in adding further specializations here too,
      but thus far it's not clear that those gains are worth their weight
      in code footprint.
      337b6f5e
  16. 13 2月, 2012 1 次提交
  17. 10 2月, 2012 1 次提交
  18. 10 1月, 2012 2 次提交
  19. 03 1月, 2012 1 次提交
  20. 02 1月, 2012 7 次提交
  21. 31 12月, 2011 1 次提交
  22. 02 12月, 2011 1 次提交
  23. 30 11月, 2011 1 次提交
  24. 29 11月, 2011 1 次提交
  25. 28 11月, 2011 1 次提交
    • A
      Make pg_dumpall build with the right object files under MSVC. · 91572ee0
      Andrew Dunstan 提交于
      This fixes a longstanding but up to now benign bug in the way pg_dumpall
      was built. The bug was exposed by recent code adjustments. The Makefile
      does not use $(OBJS) to build pg_dumpall, so this fix removes their source
      files from the pg_dumpall object and adds in the one source file it
      consequently needs.
      91572ee0
  26. 27 11月, 2011 2 次提交