1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Use "Oid" type where applicable and %ud instead of %d. Thanks Darren King.

This commit is contained in:
Bryan Henderson
1996-12-11 03:18:12 +00:00
parent 9b41da6ce4
commit 7439ba64b1
4 changed files with 24 additions and 24 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/view.c,v 1.5 1996/11/10 02:59:45 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/view.c,v 1.6 1996/12/11 03:17:17 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@ -68,7 +68,7 @@ DefineVirtualRelation(char *relname, List *tlist)
entry = lfirst(t);
res = entry->resdom;
resname = res->resname;
restypename = tname(get_id_type((long)res->restype));
restypename = tname(get_id_type(res->restype));
typename = makeNode(TypeName);