Commit 4c61c827 authored by Tom Lane's avatar Tom Lane

Fix compile warnings from truncate patch.

parent 17d93832
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.96 2002/11/23 04:05:51 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.97 2002/11/23 18:26:45 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -184,7 +184,7 @@ rebuild_rel(Oid tableOid, Oid indexOid, List *indexes, bool dataCopy) ...@@ -184,7 +184,7 @@ rebuild_rel(Oid tableOid, Oid indexOid, List *indexes, bool dataCopy)
* If dataCopy is true, we assume that we will be basing the * If dataCopy is true, we assume that we will be basing the
* copy off an index for cluster operations. * copy off an index for cluster operations.
*/ */
Assert(!dataCopy || indexOid != NULL); Assert(!dataCopy || OidIsValid(indexOid));
/* /*
* Create the new heap, using a temporary name in the same namespace * Create the new heap, using a temporary name in the same namespace
* as the existing table. NOTE: there is some risk of collision with * as the existing table. NOTE: there is some risk of collision with
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.56 2002/11/23 04:05:51 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.57 2002/11/23 18:26:45 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -449,7 +449,7 @@ TruncateRelation(const RangeVar *relation) ...@@ -449,7 +449,7 @@ TruncateRelation(const RangeVar *relation)
* Do the real work using the same technique as cluster, but * Do the real work using the same technique as cluster, but
* without the code copy portion * without the code copy portion
*/ */
rebuild_rel(relid, NULL, indexes, false); rebuild_rel(relid, InvalidOid, indexes, false);
} }
/*---------- /*----------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment