summaryrefslogtreecommitdiff
path: root/src/include/postgres_ext.h
diff options
context:
space:
mode:
authorTom Lane1999-06-04 21:12:07 +0000
committerTom Lane1999-06-04 21:12:07 +0000
commit1c3c08053452f342d9cf09aff9a36a5939508412 (patch)
treeca2aefa71557cc1950a6e7eff38c26eb7c80d731 /src/include/postgres_ext.h
parent7b5f84d12da5fb45bdb6379b411d770c33d697ea (diff)
Turns out OIDNAMELEN wasn't really being used at all!
Get rid of it to make customization of NAMEDATALEN easier.
Diffstat (limited to 'src/include/postgres_ext.h')
-rw-r--r--src/include/postgres_ext.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/postgres_ext.h b/src/include/postgres_ext.h
index c09606a1071..7e73539912a 100644
--- a/src/include/postgres_ext.h
+++ b/src/include/postgres_ext.h
@@ -16,7 +16,7 @@
* use header files that are otherwise internal to Postgres to interface
* with the backend.
*
- * $Id: postgres_ext.h,v 1.3 1999/02/13 23:20:47 momjian Exp $
+ * $Id: postgres_ext.h,v 1.4 1999/06/04 21:12:07 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -33,7 +33,4 @@ typedef unsigned int Oid;
*/
#define NAMEDATALEN 32
-/* OIDNAMELEN should be set to NAMEDATALEN + sizeof(Oid) */
-#define OIDNAMELEN 36
-
#endif