mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
Patch problems caused by code drift since OID patch creation.
This commit is contained in:
parent
e36f9cd440
commit
dcbacde2e3
@ -9,7 +9,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/commands/functioncmds.c,v 1.10 2002/07/20 05:16:57 momjian Exp $
|
* $Header: /cvsroot/pgsql/src/backend/commands/functioncmds.c,v 1.11 2002/07/20 05:37:45 momjian Exp $
|
||||||
*
|
*
|
||||||
* DESCRIPTION
|
* DESCRIPTION
|
||||||
* These routines take the parse tree and pick out the
|
* These routines take the parse tree and pick out the
|
||||||
@ -728,7 +728,7 @@ CreateCast(CreateCastStmt *stmt)
|
|||||||
}
|
}
|
||||||
|
|
||||||
myself.classId = get_system_catalog_relid(CastRelationName);
|
myself.classId = get_system_catalog_relid(CastRelationName);
|
||||||
myself.objectId = tuple->t_data->t_oid;
|
myself.objectId = HeapTupleGetOid(tuple);
|
||||||
myself.objectSubId = 0;
|
myself.objectSubId = 0;
|
||||||
|
|
||||||
/* dependency on source type */
|
/* dependency on source type */
|
||||||
@ -809,7 +809,7 @@ DropCast(DropCastStmt *stmt)
|
|||||||
* Do the deletion
|
* Do the deletion
|
||||||
*/
|
*/
|
||||||
object.classId = get_system_catalog_relid(CastRelationName);
|
object.classId = get_system_catalog_relid(CastRelationName);
|
||||||
object.objectId = tuple->t_data->t_oid;
|
object.objectId = HeapTupleGetOid(tuple);
|
||||||
object.objectSubId = 0;
|
object.objectSubId = 0;
|
||||||
|
|
||||||
performDeletion(&object, stmt->behavior);
|
performDeletion(&object, stmt->behavior);
|
||||||
|
Loading…
Reference in New Issue
Block a user