aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1997-05-06 07:20:53 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1997-05-06 07:20:53 +0000
commit6e27af13ebc225e53b841a1e6a8faacdeb804919 (patch)
tree344de543179628aed766e25f731c37f6640d4358
parentef2821d0d69f377b2b7249aad9e1b6e4275ab67c (diff)
downloadpostgresql-6e27af13ebc225e53b841a1e6a8faacdeb804919.tar.gz
postgresql-6e27af13ebc225e53b841a1e6a8faacdeb804919.zip
Rename LOread() and LOwrite() to loread() and lowrite() to allow use by
case-insensitive SQL parser.
-rw-r--r--src/include/catalog/pg_proc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h
index 564c8471f93..df9564d3f6f 100644
--- a/src/include/catalog/pg_proc.h
+++ b/src/include/catalog/pg_proc.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_proc.h,v 1.19 1997/04/27 19:22:45 thomas Exp $
+ * $Id: pg_proc.h,v 1.20 1997/05/06 07:20:53 thomas Exp $
*
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
@@ -673,8 +673,8 @@ DATA(insert OID = 949 ( mkoidname PGUID 11 f t f 2 f 911 "26 19" 100 0 0 100
DATA(insert OID = 952 ( lo_open PGUID 11 f t f 2 f 23 "26 23" 100 0 0 100 foo bar ));
DATA(insert OID = 953 ( lo_close PGUID 11 f t f 1 f 23 "23" 100 0 0 100 foo bar ));
-DATA(insert OID = 954 ( LOread PGUID 11 f t f 2 f 17 "23 23" 100 0 0 100 foo bar ));
-DATA(insert OID = 955 ( LOwrite PGUID 11 f t f 2 f 23 "23 17" 100 0 0 100 foo bar ));
+DATA(insert OID = 954 ( loread PGUID 11 f t f 2 f 17 "23 23" 100 0 0 100 foo bar ));
+DATA(insert OID = 955 ( lowrite PGUID 11 f t f 2 f 23 "23 17" 100 0 0 100 foo bar ));
DATA(insert OID = 956 ( lo_lseek PGUID 11 f t f 3 f 23 "23 23 23" 100 0 0 100 foo bar ));
DATA(insert OID = 957 ( lo_creat PGUID 11 f t f 1 f 26 "23" 100 0 0 100 foo bar ));
DATA(insert OID = 958 ( lo_tell PGUID 11 f t f 1 f 23 "23" 100 0 0 100 foo bar ));