From: Bruce Momjian Date: Mon, 16 Oct 2000 16:19:14 +0000 (+0000) Subject: Fix typo in code. X-Git-Tag: REL7_1_BETA~450 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17e3e4702d55017120bbad7211caec7e6f2f3166;p=postgresql Fix typo in code. --- diff --git a/src/include/catalog/pg_class.h b/src/include/catalog/pg_class.h index 543d4b3f2f..6bf2d129e5 100644 --- a/src/include/catalog/pg_class.h +++ b/src/include/catalog/pg_class.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_class.h,v 1.41 2000/10/16 14:52:26 vadim Exp $ + * $Id: pg_class.h,v 1.42 2000/10/16 16:19:14 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -180,6 +180,6 @@ DESCR(""); #define RELKIND_SEQUENCE 'S' /* SEQUENCE relation */ #define RELKIND_UNCATALOGED 'u' /* temporary heap */ #define RELKIND_TOASTVALUE 't' /* moved off huge values */ -#define RELKIND_VIEW 'v' /* view */ +#define RELKIND_VIEW 'v' /* view */ #endif /* PG_CLASS_H */