From 1bdd7c68c064663091eabd1465f08ec726774fc9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 29 May 1999 03:17:20 +0000 Subject: Avoid redundant SysCache searches in coerce_type, for another few percent speedup in INSERT... --- src/include/parser/parse_type.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include') diff --git a/src/include/parser/parse_type.h b/src/include/parser/parse_type.h index bc906090b0f..5ca8f9b34c5 100644 --- a/src/include/parser/parse_type.h +++ b/src/include/parser/parse_type.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_type.h,v 1.9 1998/10/08 18:30:39 momjian Exp $ + * $Id: parse_type.h,v 1.10 1999/05/29 03:17:19 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -29,8 +29,8 @@ extern char typeTypeFlag(Type t); extern char *stringTypeString(Type tp, char *string, int32 atttypmod); extern Oid typeidTypeRelid(Oid type_id); extern Oid typeTypeRelid(Type typ); -extern Oid typeidTypElem(Oid type_id); +extern Oid typeTypElem(Type typ); extern Oid GetArrayElementType(Oid typearray); -extern Oid typeidInfunc(Oid type_id); +extern Oid typeInfunc(Type typ); #endif /* PARSE_TYPE_H */ -- cgit v1.2.3