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
0ee391b7
Commit
0ee391b7
authored
13 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
/contrib/foo -> contrib/foo
Since contrib is a relative directory specification, a leading slash is inappropriate.
parent
92ff9150
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
contrib/pg_upgrade/check.c
+5
-5
5 additions, 5 deletions
contrib/pg_upgrade/check.c
contrib/pg_upgrade/controldata.c
+1
-1
1 addition, 1 deletion
contrib/pg_upgrade/controldata.c
doc/src/sgml/release-9.1.sgml
+1
-1
1 addition, 1 deletion
doc/src/sgml/release-9.1.sgml
with
7 additions
and
7 deletions
contrib/pg_upgrade/check.c
+
5
−
5
View file @
0ee391b7
...
...
@@ -507,7 +507,7 @@ check_is_super_user(ClusterInfo *cluster)
/*
* check_for_isn_and_int8_passing_mismatch()
*
*
/
contrib/isn relies on data type int8, and in 8.4 int8 can now be passed
* contrib/isn relies on data type int8, and in 8.4 int8 can now be passed
* by value. The schema dumps the CREATE TYPE PASSEDBYVALUE setting so
* it must match for the old and new servers.
*/
...
...
@@ -519,7 +519,7 @@ check_for_isn_and_int8_passing_mismatch(ClusterInfo *cluster)
bool
found
=
false
;
char
output_path
[
MAXPGPATH
];
prep_status
(
"Checking for
/
contrib/isn with bigint-passing mismatch"
);
prep_status
(
"Checking for contrib/isn with bigint-passing mismatch"
);
if
(
old_cluster
.
controldata
.
float8_pass_by_value
==
new_cluster
.
controldata
.
float8_pass_by_value
)
...
...
@@ -581,12 +581,12 @@ check_for_isn_and_int8_passing_mismatch(ClusterInfo *cluster)
{
pg_log
(
PG_REPORT
,
"fatal
\n
"
);
pg_log
(
PG_FATAL
,
"| Your installation contains
\"
/
contrib/isn
\"
functions
\n
"
"| Your installation contains
\"
contrib/isn
\"
functions
\n
"
"| which rely on the bigint data type. Your old and
\n
"
"| new clusters pass bigint values differently so this
\n
"
"| cluster cannot currently be upgraded. You can
\n
"
"| manually upgrade data that use
\"
/
contrib/isn
\"\n
"
"| facilities and remove
\"
/
contrib/isn
\"
from the
\n
"
"| manually upgrade data that use
\"
contrib/isn
\"\n
"
"| facilities and remove
\"
contrib/isn
\"
from the
\n
"
"| old cluster and restart the upgrade. A list
\n
"
"| of the problem functions is in the file:
\n
"
"|
\t
%s
\n\n
"
,
output_path
);
...
...
This diff is collapsed.
Click to expand it.
contrib/pg_upgrade/controldata.c
+
1
−
1
View file @
0ee391b7
...
...
@@ -330,7 +330,7 @@ get_control_data(ClusterInfo *cluster, bool live_check)
pg_log
(
PG_FATAL
,
"%d: controldata retrieval problem
\n
"
,
__LINE__
);
p
++
;
/* removing ':' char */
/* used later for
/
contrib check */
/* used later for contrib check */
cluster
->
controldata
.
float8_pass_by_value
=
strstr
(
p
,
"by value"
)
!=
NULL
;
got_float8_pass_by_value
=
true
;
}
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/release-9.1.sgml
+
1
−
1
View file @
0ee391b7
...
...
@@ -2272,7 +2272,7 @@
<listitem>
<para>
Modify <filename>
/
contrib</> modules and stored procedure
Modify <filename>contrib</> modules and stored procedure
languages to install via the new <link
linkend="extension">extension</link> mechanism (Tom Lane,
Dimitri Fontaine)
...
...
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