summaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_conversion.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/catalog/pg_conversion.h')
-rw-r--r--src/include/catalog/pg_conversion.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/catalog/pg_conversion.h b/src/include/catalog/pg_conversion.h
index 552766055c..e9cd3ccca2 100644
--- a/src/include/catalog/pg_conversion.h
+++ b/src/include/catalog/pg_conversion.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/catalog/pg_conversion.h,v 1.14 2004/12/31 22:03:24 pgsql Exp $
+ * $PostgreSQL: pgsql/src/include/catalog/pg_conversion.h,v 1.15 2005/04/14 01:38:20 tgl Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -21,7 +21,7 @@
/* ----------------
* postgres.h contains the system type definitions and the
- * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
+ * CATALOG(), BKI_BOOTSTRAP and DATA() sugar words so this file
* can be read by both genbki.sh and the C compiler.
* ----------------
*/
@@ -40,7 +40,9 @@
* condefault TRUE if this is a default conversion
* ----------------------------------------------------------------
*/
-CATALOG(pg_conversion)
+#define ConversionRelationId 2607
+
+CATALOG(pg_conversion,2607)
{
NameData conname;
Oid connamespace;