File tree 2 files changed +2
-13
lines changed
2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/parser/parse_type.c,v 1.67 2004/05/30 23:40:35 neilc Exp $
11
+ * $PostgreSQL: pgsql/src/backend/parser/parse_type.c,v 1.68 2004/06/03 19:41:46 tgl Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -313,16 +313,6 @@ typeTypeName(Type t)
313
313
return pstrdup (NameStr (typ -> typname ));
314
314
}
315
315
316
- /* given a type, return its typetype ('c' for 'c'atalog types) */
317
- char
318
- typeTypeFlag (Type t )
319
- {
320
- Form_pg_type typ ;
321
-
322
- typ = (Form_pg_type ) GETSTRUCT (t );
323
- return typ -> typtype ;
324
- }
325
-
326
316
Oid
327
317
typeTypeRelid (Type typ )
328
318
{
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/parser/parse_type.h,v 1.26 2003/11/29 22 :41:09 pgsql Exp $
10
+ * $PostgreSQL: pgsql/src/include/parser/parse_type.h,v 1.27 2004/06/03 19 :41:46 tgl Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -33,7 +33,6 @@ extern int16 typeLen(Type t);
33
33
extern bool typeByVal (Type t );
34
34
extern char typeTypType (Type t );
35
35
extern char * typeTypeName (Type t );
36
- extern char typeTypeFlag (Type t );
37
36
extern Oid typeTypeRelid (Type typ );
38
37
extern Datum stringTypeDatum (Type tp , char * string , int32 atttypmod );
39
38
You can’t perform that action at this time.
0 commit comments