postgresql/src/interfaces/libpq
Bruce Momjian 210055ad61 here are some patches for 6.5.0 which I already submitted but have never
been applied. The patches are in the .tar.gz attachment at the end:

varchar-array.patch     this patch adds support for arrays of bpchar() and
                        varchar(), which where always missing from postgres.

                        These datatypes can be used to replace the _char4,
                        _char8, etc., which were dropped some time ago.

block-size.patch        this patch fixes many errors in the parser and other
                        program which happen with very large query statements
                        (> 8K) when using a page size larger than 8192.

                        This patch is needed if you want to submit queries
                        larger than 8K. Postgres supports tuples up to 32K
                        but you can't insert them because you can't submit
                        queries larger than 8K. My patch fixes this problem.

                        The patch also replaces all the occurrences of `8192'
                        and `1<<13' in the sources with the proper constants
                        defined in include files. You should now never find
                        8192 hardwired in C code, just to make code clearer.


--
Massimo Dal Zotto
1999-05-03 19:10:48 +00:00
..
fe-auth.c I've been having also sorts of fun trying to get kerberos 4 1999-03-14 16:06:43 +00:00
fe-auth.h
fe-connect.c here are some patches for 6.5.0 which I already submitted but have never 1999-05-03 19:10:48 +00:00
fe-exec.c Use MAXALIGN value found by configure instead of a 1999-04-04 20:10:12 +00:00
fe-lobj.c Change my-function-name-- to my_function_name, and optimizer renames. 1999-02-13 23:22:53 +00:00
fe-misc.c Final optimizer cleanups. 1999-02-22 05:26:58 +00:00
fe-print.c here are some patches for 6.5.0 which I already submitted but have never 1999-05-03 19:10:48 +00:00
libpq-fe.h Change my-function-name-- to my_function_name, and optimizer renames. 1999-02-13 23:22:53 +00:00
libpq-int.h here are some patches for 6.5.0 which I already submitted but have never 1999-05-03 19:10:48 +00:00
libpq.rc
libpqdll.c Hello! 1998-10-08 00:10:49 +00:00
libpqdll.def Add PQresStatus() function to avoid direct access to pgresStatus[] array, 1999-02-07 22:08:54 +00:00
Makefile.in Export include/utils/mcxt.h so that external stuff can include 1999-03-07 23:05:57 +00:00
pqsignal.c Change my-function-name-- to my_function_name, and optimizer renames. 1999-02-13 23:22:53 +00:00
pqsignal.h Change my-function-name-- to my_function_name, and optimizer renames. 1999-02-13 23:22:53 +00:00
README
win32.h Compilation of libpq for Win32 breaks on 6.4, because of a change that I 1998-12-14 15:05:27 +00:00
win32.mak Compilation of libpq for Win32 breaks on 6.4, because of a change that I 1998-12-14 15:05:27 +00:00

This directory contains the C version of Libpq, the POSTGRES frontend library.