diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-12-11 03:18:12 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-12-11 03:18:12 +0000 |
commit | 7439ba64b10f913a71c8bdd565823cc36a5fd124 (patch) | |
tree | d5df81de58db787208f14acb76471c81453715ae /src/include/parser/catalog_utils.h | |
parent | 9b41da6ce48e3bed6730faa6347a5461175cff83 (diff) | |
download | postgresql-7439ba64b10f913a71c8bdd565823cc36a5fd124.tar.gz postgresql-7439ba64b10f913a71c8bdd565823cc36a5fd124.zip |
Use "Oid" type where applicable and %ud instead of %d. Thanks Darren King.
Diffstat (limited to 'src/include/parser/catalog_utils.h')
-rw-r--r-- | src/include/parser/catalog_utils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/parser/catalog_utils.h b/src/include/parser/catalog_utils.h index 9a26d1a8e0a..5c7fe7f7531 100644 --- a/src/include/parser/catalog_utils.h +++ b/src/include/parser/catalog_utils.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: catalog_utils.h,v 1.5 1996/11/30 18:06:58 momjian Exp $ + * $Id: catalog_utils.h,v 1.6 1996/12/11 03:18:12 bryanh Exp $ * *------------------------------------------------------------------------- */ @@ -19,9 +19,9 @@ typedef HeapTuple Type; typedef HeapTuple Operator; -extern bool check_typeid(long id); -extern Type get_id_type(long id); -extern char *get_id_typname(long id); +extern bool check_typeid(Oid id); +extern Type get_id_type(Oid id); +extern char *get_id_typname(Oid id); extern Type type(char *); extern Oid att_typeid(Relation rd, int attid); extern int att_attnelems(Relation rd, int attid); |