diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-03-30 17:28:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-03-30 17:28:21 +0000 |
commit | 57b5966405fb6e237676acef55973c064ac65a2a (patch) | |
tree | d2397c1d3308e56cd33c5f2f607e26129106ed4a /src/backend/tcop/fastpath.c | |
parent | 31c36102cab914f6664ee2db20c7732aeb51a02b (diff) | |
download | postgresql-57b5966405fb6e237676acef55973c064ac65a2a.tar.gz postgresql-57b5966405fb6e237676acef55973c064ac65a2a.zip |
The following uuencoded, gzip'd file will ...
1. Remove the char2, char4, char8 and char16 types from postgresql
2. Change references of char16 to name in the regression tests.
3. Rename the char16.sql regression test to name.sql. 4. Modify
the regression test scripts and outputs to match up.
Might require new regression.{SYSTEM} files...
Darren King
Diffstat (limited to 'src/backend/tcop/fastpath.c')
-rw-r--r-- | src/backend/tcop/fastpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tcop/fastpath.c b/src/backend/tcop/fastpath.c index bf799d5025e..e5a1ff8e690 100644 --- a/src/backend/tcop/fastpath.c +++ b/src/backend/tcop/fastpath.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.13 1998/02/26 04:36:26 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.14 1998/03/30 17:23:52 momjian Exp $ * * NOTES * This cruft is the server side of PQfn. @@ -44,7 +44,7 @@ * The previous implementation would assume (1) that any value of * length <= 4 bytes was passed-by-value, and that any other value * was a struct varlena (by-reference). There was NO way to pass a - * fixed-length by-reference argument (like char16) or a struct + * fixed-length by-reference argument (like name) or a struct * varlena of size <= 4 bytes. * * The new implementation checks the catalogs to determine whether |