1. 25 5月, 2001 8 次提交
    • B
      While changing Cygwin Python to build its core as a DLL (like Win32 · dffb6736
      Bruce Momjian 提交于
      Python) to support shared extension modules, I have learned that Guido
      prefers the style of the attached patch to solve the above problem.
      I feel that this solution is particularly appropriate in this case
      because the following:
      
          PglargeType
          PgType
          PgQueryType
      
      are already being handled in the way that I am proposing for PgSourceType.
      
      Jason Tishler
      dffb6736
    • B
      Back out, per Peter E. · 3f7c542a
      Bruce Momjian 提交于
      > > The attached patch changes src/interfaces/python/GNUmakefile to use the
      > > value of DESTDIR like the rest (or at least most) of the PostgreSQL
      > > makefiles.  I found this problem when trying to package a pre-built
      > > Cygwin PostgreSQL distribution, but this problem is platform independent.
      3f7c542a
    • B
      The attached patch changes src/interfaces/python/GNUmakefile to use the · eeca4bdb
      Bruce Momjian 提交于
      value of DESTDIR like the rest (or at least most) of the PostgreSQL
      makefiles.  I found this problem when trying to package a pre-built
      Cygwin PostgreSQL distribution, but this problem is platform independent.
      
      The problem manifests itself when one tries to install into a stagging
      area (e.g., to build a tarball) instead of a real install.  In this case,
      pg.py and _pgmodule$(SO) still end up being installed in the configured
      prefix directory ignoring the value of DESTDIR.
      
      Unfortunately, this patch does not handle the case where PostgreSQL
      and Python are configured with different prefixes.  Since the Python
      Makefile is automatically generated and does not use DESTDIR, I believe
      that this issue will be difficult to correct.  If anyone has ideas on
      how to fix this issue, then I'm quite willing to rework the patch to
      take the suggestion into account.
      
      Jason Tishler
      eeca4bdb
    • B
      The following patch corrects a make install problem when building · 74068dfe
      Bruce Momjian 提交于
      under Cygwin.  The root cause of this problem is that (Sun) java is a
      native Win32 app and hence does not understand Cygwin Posix style paths.
      The solution is to use Cygwin's cygpath utility to convert the Posix style
      JDBC installation directory path into a Win32 one before invoking ant.
      
      I'm not sure if my patch is the best way to correct this issue but
      my goal was to confine the Cygwin specific constructs to
      
      Jason Tishler
      74068dfe
    • H
      Get rid of the following size limit. · e5cff3fe
      Hiroshi Inoue 提交于
      1) Query size limit(was 65536) for >=7.0 servers.
      2) Text size limit(was 8190) for 7.1 servers.
      e5cff3fe
    • B
      Another Makefile fix for qnx patch. · f3c1ae58
      Bruce Momjian 提交于
      f3c1ae58
    • B
      Fix tabs in Makefile. · 248a5a72
      Bruce Momjian 提交于
      248a5a72
    • B
      a1f14d30
  2. 24 5月, 2001 9 次提交
  3. 23 5月, 2001 8 次提交
  4. 22 5月, 2001 10 次提交
  5. 21 5月, 2001 2 次提交
    • J
      Enhancement of SPI to get access to portals · d27f363e
      Jan Wieck 提交于
      - New functions to create a portal using a prepared/saved
        SPI plan or lookup an existing portal by name.
      - Functions to fetch/move from/in portals. Results are placed
        in the usual SPI_processed and SPI_tuptable, so the entire
        set of utility functions can be used to gain attribute access.
      - Prepared/saved SPI plans now use their own memory context
        and SPI_freeplan(plan) can remove them.
      - Tuple result sets (SPI_tuptable) now uses it's own memory
        context and can be free'd by SPI_freetuptable(tuptab).
      
      Enhancement of PL/pgSQL
      
      - Uses generic named portals internally in FOR ... SELECT
        loops to avoid running out of memory on huge result sets.
      - Support for CURSOR and REFCURSOR syntax using the new SPI
        functionality. Cursors used internally only need no explicit
        transaction block. Refcursor variables can be used inside
        of explicit transaction block to pass cursors between main
        application and functions.
      
      
      Jan
      d27f363e
    • T
      Modify optimizer data structures so that IndexOptInfo lists built for · be03eb25
      Tom Lane 提交于
      create_index_paths are not immediately discarded, but are available for
      subsequent planner work.  This allows avoiding redundant syscache lookups
      in several places.  Change interface to operator selectivity estimation
      procedures to allow faster and more flexible estimation.
      Initdb forced due to change of pg_proc entries for selectivity functions!
      be03eb25
  6. 20 5月, 2001 1 次提交
  7. 19 5月, 2001 2 次提交