Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
0dd19ad2
Commit
0dd19ad2
authored
23 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Add info about how to enable large-file support, so that pg_dump won't
choke at 2Gb of output. From Andrew Sullivan.
parent
74c8c093
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/FAQ_Solaris
+13
-1
13 additions, 1 deletion
doc/FAQ_Solaris
with
13 additions
and
1 deletion
doc/FAQ_Solaris
+
13
−
1
View file @
0dd19ad2
...
@@ -3,7 +3,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL 7.2
...
@@ -3,7 +3,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL 7.2
Sun Solaris specific
Sun Solaris specific
to be read in conjunction with the installation instructions
to be read in conjunction with the installation instructions
============================================================
============================================================
last updated: $Date: 200
1/12/10 13:02:20
$
last updated: $Date: 200
2/01/18 20:56:17
$
current maintainer: Peter Eisentraut <peter_e@gmx.net>
current maintainer: Peter Eisentraut <peter_e@gmx.net>
...
@@ -13,6 +13,7 @@ Contents:
...
@@ -13,6 +13,7 @@ Contents:
1) What tools do I need to build and install PostgreSQL on Solaris?
1) What tools do I need to build and install PostgreSQL on Solaris?
2) Why do I get problems when building with OpenSSL support?
2) Why do I get problems when building with OpenSSL support?
3) Why does configure complain about a failed test program?
3) Why does configure complain about a failed test program?
4) How do I ensure that pg_dump and pg_restore can handle files > 2 Gb?
1) What tools do I need to build and install PostgreSQL on Solaris?
1) What tools do I need to build and install PostgreSQL on Solaris?
...
@@ -64,3 +65,14 @@ whenever you run any of the installed PostgreSQL programs.
...
@@ -64,3 +65,14 @@ whenever you run any of the installed PostgreSQL programs.
Alternatively, set the environment variable LD_RUN_PATH. See the
Alternatively, set the environment variable LD_RUN_PATH. See the
ld(1) man page for more information.
ld(1) man page for more information.
4) How do I ensure that pg_dump and pg_restore can handle files > 2 Gb?
By default, gcc will build programs that only handle 32-bit file offsets.
This is not a real problem for the server but can easily be trouble for
pg_dump and pg_restore. Before running 'configure', set your CFLAGS variable
to specify support for files with 64-bit offsets. This has been verified
to work on Solaris 7:
CFLAGS="`getconf LFS_CFLAGS`"; export CFLAGS
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment