OSDN Git Service

here are some patches for 6.5.0 which I already submitted but have never
authorBruce Momjian <bruce@momjian.us>
Mon, 3 May 1999 19:10:48 +0000 (19:10 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 3 May 1999 19:10:48 +0000 (19:10 +0000)
commit210055ad614ae845686fdf9f8fc6b60301689cc8
tree0410cff48a92bc3c95aea12877046d4ab25aaedb
parentda5f1dd7227bd507cc8d5b088fd3f5e53e932722
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
27 files changed:
src/backend/commands/copy.c
src/backend/libpq/be-fsstubs.c
src/backend/parser/Makefile
src/backend/parser/gram.y
src/backend/parser/scan.l
src/backend/port/hpux/fixade.h
src/backend/tcop/postgres.c
src/backend/utils/adt/arrayfuncs.c
src/backend/utils/adt/ruleutils.c
src/backend/utils/adt/varchar.c
src/bin/psql/psql.c
src/include/catalog/pg_proc.h
src/include/catalog/pg_type.h
src/include/libpq/pqcomm.h
src/include/miscadmin.h
src/include/postgres.h
src/include/utils/array.h
src/include/utils/builtins.h
src/interfaces/ecpg/preproc/Makefile
src/interfaces/ecpg/preproc/pgc.l
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/fe-print.c
src/interfaces/libpq/libpq-int.h
src/interfaces/odbc/info.c
src/interfaces/odbc/psqlodbc.h
src/interfaces/python/pgmodule.c
src/test/regress/regress.c