diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-05-30 19:55:08 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-05-30 19:55:08 +0000 |
commit | 8eb9c92560f8a6ac987b0a8bad0473e1340421c5 (patch) | |
tree | c4d5217764f94854e3a96ecf39f8f89d56b98717 | |
parent | f1d5d0905c16021cd715ea078c806bf7e0673a83 (diff) | |
download | postgresql-8eb9c92560f8a6ac987b0a8bad0473e1340421c5.tar.gz postgresql-8eb9c92560f8a6ac987b0a8bad0473e1340421c5.zip |
Add "#define GIST_AM_OID".
-rw-r--r-- | src/include/catalog/pg_am.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/catalog/pg_am.h b/src/include/catalog/pg_am.h index e60e40f7d99..f2de6fb6c06 100644 --- a/src/include/catalog/pg_am.h +++ b/src/include/catalog/pg_am.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_am.h,v 1.16 2001/01/24 19:43:20 momjian Exp $ + * $Id: pg_am.h,v 1.17 2001/05/30 19:55:08 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -116,5 +116,6 @@ DESCR(""); #define HASH_AM_OID 405 DATA(insert OID = 783 ( gist PGUID 100 7 0 gistgettuple gistinsert gistdelete - - - - gistbeginscan gistrescan gistendscan gistmarkpos gistrestrpos - - gistbuild - - gistcostestimate )); DESCR(""); +#define GIST_AM_OID 783 #endif /* PG_AM_H */ |