File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
*
11
11
*
12
12
* 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 $
14
14
*
15
15
*-------------------------------------------------------------------------
16
16
*/
@@ -856,7 +856,7 @@ ProcessUtility(Node *parsetree,
856
856
switch (stmt -> reindexType )
857
857
{
858
858
case INDEX :
859
- relname = stmt -> name ;
859
+ relname = ( char * ) stmt -> name ;
860
860
if (IsSystemRelationName (relname ))
861
861
{
862
862
if (!allowSystemTableMods && IsSystemRelationName (relname ))
@@ -873,7 +873,7 @@ ProcessUtility(Node *parsetree,
873
873
ReindexIndex (relname , stmt -> force );
874
874
break ;
875
875
case TABLE :
876
- relname = stmt -> name ;
876
+ relname = ( char * ) stmt -> name ;
877
877
if (IsSystemRelationName (relname ))
878
878
{
879
879
if (!allowSystemTableMods && IsSystemRelationName (relname ))
@@ -890,7 +890,7 @@ ProcessUtility(Node *parsetree,
890
890
ReindexTable (relname , stmt -> force );
891
891
break ;
892
892
case DATABASE :
893
- relname = stmt -> name ;
893
+ relname = ( char * ) stmt -> name ;
894
894
if (!allowSystemTableMods )
895
895
elog (ERROR , "-O option is needed" );
896
896
if (!IsIgnoringSystemIndexes ())
You can’t perform that action at this time.
0 commit comments