Change LOread() and LOwrite() to loread() and lowrite() to allow use

by case-insensitive SQL parser.
This commit is contained in:
Thomas G. Lockhart 1997-05-06 07:16:21 +00:00
parent 94123219bf
commit fad56c5211

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.8 1997/04/21 04:28:59 vadim Exp $ * $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.9 1997/05/06 07:16:21 thomas Exp $
* *
* NOTES * NOTES
* This should be moved to a more appropriate place. It is here * This should be moved to a more appropriate place. It is here
@ -213,7 +213,7 @@ lo_unlink(Oid lobjId)
*****************************************************************************/ *****************************************************************************/
struct varlena * struct varlena *
LOread(int fd, int len) loread(int fd, int len)
{ {
struct varlena *retval; struct varlena *retval;
int totalread = 0; int totalread = 0;
@ -225,7 +225,7 @@ LOread(int fd, int len)
return retval; return retval;
} }
int LOwrite(int fd, struct varlena *wbuf) int lowrite(int fd, struct varlena *wbuf)
{ {
int totalwritten; int totalwritten;
int bytestowrite; int bytestowrite;