diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-10 06:02:24 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-10 06:02:24 +0000 |
commit | a35b6b6418ca265b9649c033cfe727bf85cbe026 (patch) | |
tree | 548fd952997962d83ede63c518855aa096b65a86 /src/include | |
parent | ee27436f6cbedf69b2da7c6fc69548232b476833 (diff) | |
download | postgresql-a35b6b6418ca265b9649c033cfe727bf85cbe026.tar.gz postgresql-a35b6b6418ca265b9649c033cfe727bf85cbe026.zip |
Add DEFAULT_INDEX_TYPE == "btree", for clarity.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/index.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/catalog/index.h b/src/include/catalog/index.h index a2d47b836d2..c31900a7ccd 100644 --- a/src/include/catalog/index.h +++ b/src/include/catalog/index.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: index.h,v 1.44 2002/02/19 20:11:19 tgl Exp $ + * $Id: index.h,v 1.45 2002/03/10 06:02:24 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -18,6 +18,7 @@ #include "catalog/pg_index.h" #include "nodes/execnodes.h" +#define DEFAULT_INDEX_TYPE "btree" /* Typedef for callback function for IndexBuildHeapScan */ typedef void (*IndexBuildCallback) (Relation index, |