Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
97906ac6
Commit
97906ac6
authored
Oct 11, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reinstituted NAMEDATALEN OIDNAMELEN in Makefile.global so that initdb
works again...
parent
329b38ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
1 deletion
+17
-1
src/Makefile.global
src/Makefile.global
+17
-1
No files found.
src/Makefile.global
View file @
97906ac6
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.3
6 1996/10/08 00:08:5
6 scrappy Exp $
# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.3
7 1996/10/11 02:38:1
6 scrappy Exp $
#
#
# NOTES
# NOTES
# This is seen by any Makefiles that include mk/postgres.mk. To
# This is seen by any Makefiles that include mk/postgres.mk. To
...
@@ -107,6 +107,22 @@ HEADERDIR= $(POSTGRESDIR)/include
...
@@ -107,6 +107,22 @@ HEADERDIR= $(POSTGRESDIR)/include
# The port to run the postmaster on
# The port to run the postmaster on
POSTPORT
=
5432
POSTPORT
=
5432
# NAMEDATALEN is the max length for system identifiers (e.g. table names,
# attribute names, function names, etc.)
#
# These MUST be set here. DO NOT COMMENT THESE OUT
# Setting these too high will result in excess space usage for system catalogs
# Setting them too low will make the system unusable.
# values between 16 and 64 that are multiples of four are recommended.
#
# NOTE also that databases with different NAMEDATALEN's cannot interoperate!
#
NAMEDATALEN
=
32
# OIDNAMELEN should be set to NAMEDATALEN + sizeof(Oid)
OIDNAMELEN
=
36
CFLAGS
+=
-DNAMEDATALEN
=
$(NAMEDATALEN)
-DOIDNAMELEN
=
$(OIDNAMELEN)
##############################################################################
##############################################################################
#
#
# FEATURES
# FEATURES
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment