aboutsummaryrefslogtreecommitdiff
path: root/doc/FAQ_DEV
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-08-13 20:40:44 +0000
committerBruce Momjian <bruce@momjian.us>2002-08-13 20:40:44 +0000
commit46bb23ac016714065711cf2a780e080c7310d66e (patch)
tree24c508c5c37af724da039332f60dbf31039993a5 /doc/FAQ_DEV
parentf8b4a2e0f0a0dd7d1cefd53d8048bfb58f33bd37 (diff)
downloadpostgresql-46bb23ac016714065711cf2a780e080c7310d66e.tar.gz
postgresql-46bb23ac016714065711cf2a780e080c7310d66e.zip
Change NAMEDATALEN to 64, INDEX_MAX_KEYS/MAX_FUNC_ARGS to 32, per discussion on hackers.
Diffstat (limited to 'doc/FAQ_DEV')
-rw-r--r--doc/FAQ_DEV2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/FAQ_DEV b/doc/FAQ_DEV
index 42dc34f19c5..c324db36f94 100644
--- a/doc/FAQ_DEV
+++ b/doc/FAQ_DEV
@@ -560,7 +560,7 @@
Table, column, type, function, and view names are stored in system
tables in columns of type Name. Name is a fixed-length,
null-terminated type of NAMEDATALEN bytes. (The default value for
- NAMEDATALEN is 32 bytes.)
+ NAMEDATALEN is 64 bytes.)
typedef struct nameData
{
char data[NAMEDATALEN];