diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-30 19:53:03 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-30 19:53:03 +0000 |
commit | 1e4f34f3099cad3a0860f4ec3762e2a5a5f86dfa (patch) | |
tree | 5464432e723facd295693ee06194f82a0dabd636 /src/include/postgres_ext.h | |
parent | e4f06dc12efaf14878288a175efcf50ce2318813 (diff) | |
download | postgresql-1e4f34f3099cad3a0860f4ec3762e2a5a5f86dfa.tar.gz |
Document that NAMEDATALEN must be a multiple of sizeof(int).
Diffstat (limited to 'src/include/postgres_ext.h')
-rw-r--r-- | src/include/postgres_ext.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/postgres_ext.h b/src/include/postgres_ext.h index 0699cebdf8..3249ce4350 100644 --- a/src/include/postgres_ext.h +++ b/src/include/postgres_ext.h @@ -15,7 +15,7 @@ * use header files that are otherwise internal to Postgres to interface * with the backend. * - * $Id: postgres_ext.h,v 1.9 2001/10/28 06:25:59 momjian Exp $ + * $Id: postgres_ext.h,v 1.10 2002/04/30 19:53:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -36,7 +36,8 @@ typedef unsigned int Oid; /* * NAMEDATALEN is the max length for system identifiers (e.g. table names, - * attribute names, function names, etc.) + * attribute names, function names, etc). It must be a multiple of + * sizeof(int) (typically 4). * * NOTE that databases with different NAMEDATALEN's cannot interoperate! */ |