diff options
Diffstat (limited to 'src/backend/parser/parse_node.c')
-rw-r--r-- | src/backend/parser/parse_node.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/parser/parse_node.c b/src/backend/parser/parse_node.c index dd7e18e910b..7c9f6940d68 100644 --- a/src/backend/parser/parse_node.c +++ b/src/backend/parser/parse_node.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_node.c,v 1.17 1998/07/12 21:29:20 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_node.c,v 1.18 1998/07/20 11:17:11 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -280,7 +280,7 @@ make_array_ref(Node *expr, if (type_struct_array->typelem == InvalidOid) elog(ERROR, "make_array_ref: type %s is not an array", - (Name) &(type_struct_array->typname.data[0])); + type_struct_array->typname); /* get the type tuple for the element type */ type_tuple = SearchSysCacheTuple(TYPOID, @@ -362,7 +362,7 @@ make_array_set(Expr *target_expr, if (type_struct_array->typelem == InvalidOid) elog(ERROR, "make_array_ref: type %s is not an array", - (Name) &(type_struct_array->typname.data[0])); + type_struct_array->typname); /* get the type tuple for the element type */ type_tuple = SearchSysCacheTuple(TYPOID, ObjectIdGetDatum(type_struct_array->typelem), |