1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-24 09:27:52 +03:00

Move NAMEDATALEN definition from postgres_ext.h to pg_config_manual.h. It

used to be part of libpq's exported interface many releases ago, but now
it's no longer necessary to make it accessible to clients.
This commit is contained in:
Peter Eisentraut
2007-02-06 09:16:08 +00:00
parent 56e59edd75
commit 037f8413fa
6 changed files with 23 additions and 25 deletions

View File

@@ -6,7 +6,7 @@
* for developers. If you edit any of these, be sure to do a *full*
* rebuild (and an initdb if noted).
*
* $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.23 2006/09/18 22:40:40 tgl Exp $
* $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.24 2007/02/06 09:16:08 petere Exp $
*------------------------------------------------------------------------
*/
@@ -62,6 +62,15 @@
*/
#define XLOG_SEG_SIZE (16*1024*1024)
/*
* Maximum length for identifiers (e.g. table names, column names,
* function names). It must be a multiple of sizeof(int) (typically
* 4).
*
* Changing this requires an initdb.
*/
#define NAMEDATALEN 64
/*
* Maximum number of arguments to a function.
*