1010 *
1111 *
1212 * IDENTIFICATION
13- * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.83 2000/02/18 09 :29:31 inoue Exp $
13+ * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.84 2000/02/19 02 :29:07 tgl Exp $
1414 *
1515 *-------------------------------------------------------------------------
1616 */
@@ -856,7 +856,7 @@ ProcessUtility(Node *parsetree,
856856switch (stmt -> reindexType )
857857{
858858case INDEX :
859- relname = stmt -> name ;
859+ relname = ( char * ) stmt -> name ;
860860if (IsSystemRelationName (relname ))
861861{
862862if (!allowSystemTableMods && IsSystemRelationName (relname ))
@@ -873,7 +873,7 @@ ProcessUtility(Node *parsetree,
873873ReindexIndex (relname ,stmt -> force );
874874break ;
875875case TABLE :
876- relname = stmt -> name ;
876+ relname = ( char * ) stmt -> name ;
877877if (IsSystemRelationName (relname ))
878878{
879879if (!allowSystemTableMods && IsSystemRelationName (relname ))
@@ -890,7 +890,7 @@ ProcessUtility(Node *parsetree,
890890ReindexTable (relname ,stmt -> force );
891891break ;
892892case DATABASE :
893- relname = stmt -> name ;
893+ relname = ( char * ) stmt -> name ;
894894if (!allowSystemTableMods )
895895elog (ERROR ,"-O option is needed" );
896896if (!IsIgnoringSystemIndexes ())