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
de432ce3
Commit
de432ce3
authored
Jan 13, 2003
by
Hiroshi Inoue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change Adjust_lo_type() so that it doesn't cause an error
even when cast functions are allowed to be volatile.
parent
9e66243c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
71 additions
and
54 deletions
+71
-54
src/bin/pg_dump/pg_backup_archiver.c
src/bin/pg_dump/pg_backup_archiver.c
+71
-54
No files found.
src/bin/pg_dump/pg_backup_archiver.c
View file @
de432ce3
...
...
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.6
4 2003/01/03 18:05:02
inoue Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.6
5 2003/01/13 04:28:55
inoue Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -123,82 +123,99 @@ CloseArchive(Archive *AHX)
}
/*
* Adjust lo type in contrib for 7.3 or later.
* There must be a cast between lo and oid.
* This function repairs a slip when upgrading PG cast
* mechanism from 7.2 or earlier to 7.3 or later.
* The casts between lo and oid are needed when retrieving
* lo type data in FixupBlobRefs and so adjust lo type in
* contrib before processing FixupBlobRefs.
*/
static
void
Adjust_lo_type
(
ArchiveHandle
*
AH
)
{
PGresult
*
res
;
int
nTuples
;
/*
* The cast function lo(oid) should be immutable.
* If it's volatile it should be changed to
* be immutable and the cast (oid as lo)
* should be created.
* First check the existence of the cast oid as lo.
*/
res
=
PQexec
(
AH
->
blobConnection
,
"begin;"
"update pg_proc set provolatile = 'i'"
res
=
PQexec
(
AH
->
blobConnection
,
"select 1 from pg_cast where"
" castsource in (select oid from pg_type where typname = 'oid')"
" and casttarget in (select oid from pg_type where typname = 'lo')"
);
if
(
!
res
||
PQresultStatus
(
res
)
!=
PGRES_TUPLES_OK
)
die_horribly
(
AH
,
modulename
,
"error while checking the cast oid as lo
\n
"
);
nTuples
=
PQntuples
(
res
);
PQclear
(
res
);
if
(
nTuples
==
0
)
{
/*
* Check the existence of the cast function lo(oid)
* and change it to be IMMUTABLE.
*/
res
=
PQexec
(
AH
->
blobConnection
,
"update pg_proc set provolatile = 'i'"
" where proname = 'lo'"
" and pronargs = 1"
" and provolatile = 'v'"
" and prorettype in (select oid from pg_type where typname = 'lo')"
" and proargtypes[0] in (select oid from pg_type where typname = 'oid')"
);
if
(
!
res
||
PQresultStatus
(
res
)
!=
PGRES_COMMAND_OK
)
die_horribly
(
AH
,
modulename
,
"could not adjust lo(oid) function"
);
if
(
strcmp
(
PQcmdTuples
(
res
),
"1"
)
==
0
)
{
PQclear
(
res
);
/* create cast */
res
=
PQexec
(
AH
->
blobConnection
,
"create cast"
" (oid as lo) with function lo(oid) as implicit;commit"
);
if
(
!
res
)
die_horribly
(
AH
,
modulename
,
"couldn't create cast (oid as lo)"
);
}
else
{
if
(
!
res
||
PQresultStatus
(
res
)
!=
PGRES_COMMAND_OK
)
die_horribly
(
AH
,
modulename
,
"could not adjust lo(oid) function
\n
"
);
nTuples
=
atoi
(
PQcmdTuples
(
res
));
PQclear
(
res
);
/* The change is needless */
res
=
PQexec
(
AH
->
blobConnection
,
"rollback"
);
if
(
!
res
)
die_horribly
(
AH
,
modulename
,
"rollback error"
);
if
(
nTuples
==
1
)
{
/*
* The cast function lo(oid) exists and
* then create the correspoding cast.
*/
res
=
PQexec
(
AH
->
blobConnection
,
"create cast"
" (oid as lo) with function lo(oid) as implicit"
);
if
(
!
res
||
PQresultStatus
(
res
)
!=
PGRES_COMMAND_OK
)
die_horribly
(
AH
,
modulename
,
"couldn't create cast (oid as lo)
\n
"
);
PQclear
(
res
);
}
}
PQclear
(
res
);
/*
* The cast function oid(lo) should be immutable.
* If it's volatile it should be changed to
* be immutable and the cast (lo as oid)
* should be created.
/*
* Also check the existence of the cast lo as oid.
*/
res
=
PQexec
(
AH
->
blobConnection
,
"begin;"
"update pg_proc set provolatile = 'i'"
res
=
PQexec
(
AH
->
blobConnection
,
"select 1 from pg_cast where"
" castsource in (select oid from pg_type where typname = 'lo')"
" and casttarget in (select oid from pg_type where typname = 'oid')"
);
if
(
!
res
||
PQresultStatus
(
res
)
!=
PGRES_TUPLES_OK
)
die_horribly
(
AH
,
modulename
,
"error while checking the cast lo as oid
\n
"
);
nTuples
=
PQntuples
(
res
);
PQclear
(
res
);
if
(
nTuples
==
0
)
{
/*
* Check the existence of the cast function oid(lo)
* and change it to be IMMUTABLE.
*/
res
=
PQexec
(
AH
->
blobConnection
,
"update pg_proc set provolatile = 'i'"
" where proname = 'oid'"
" and provolatile = 'v'"
" and pronargs = 1"
" and prorettype in (select oid from pg_type where typname = 'oid')"
" and proargtypes[0] in (select oid from pg_type where typname = 'lo')"
);
if
(
!
res
||
PQresultStatus
(
res
)
!=
PGRES_COMMAND_OK
)
die_horribly
(
AH
,
modulename
,
"could not adjust oid(lo) function"
);
if
(
strcmp
(
PQcmdTuples
(
res
),
"1"
)
==
0
)
{
PQclear
(
res
);
/* create cast */
res
=
PQexec
(
AH
->
blobConnection
,
"create cast"
" (lo as oid) with function oid(lo) as implicit;commit"
);
if
(
!
res
)
die_horribly
(
AH
,
modulename
,
"couldn't create cast (lo as oid)"
);
}
else
{
if
(
!
res
||
PQresultStatus
(
res
)
!=
PGRES_COMMAND_OK
)
die_horribly
(
AH
,
modulename
,
"could not adjust oid(lo) function
\n
"
);
nTuples
=
atoi
(
PQcmdTuples
(
res
));
PQclear
(
res
);
/* the change is needless */
res
=
PQexec
(
AH
->
blobConnection
,
"rollback"
);
if
(
!
res
)
die_horribly
(
AH
,
modulename
,
"rollback error"
);
if
(
nTuples
==
1
)
{
/*
* The cast function oid(lo) exists and
* then create the correspoding cast.
*/
res
=
PQexec
(
AH
->
blobConnection
,
"create cast"
" (lo as oid) with function oid(lo) as implicit"
);
if
(
!
res
||
PQresultStatus
(
res
)
!=
PGRES_COMMAND_OK
)
die_horribly
(
AH
,
modulename
,
"couldn't create cast (lo as oid)
\n
"
);
PQclear
(
res
);
}
}
PQclear
(
res
);
}
/* Public */
...
...
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