Commit 7bc1fbe1 authored by Tom Lane's avatar Tom Lane

Remove no-longer-used symbols.

parent bd52f4bf
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: internal.h,v 1.23 1999/07/25 23:07:23 tgl Exp $ * $Id: internal.h,v 1.24 2000/01/11 03:59:31 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -32,9 +32,6 @@ ...@@ -32,9 +32,6 @@
#define _CPU_PAGE_WEIGHT_ 0.033 /* CPU-heap-to-page cost weighting factor */ #define _CPU_PAGE_WEIGHT_ 0.033 /* CPU-heap-to-page cost weighting factor */
#define _CPU_INDEX_PAGE_WEIGHT_ 0.017 /* CPU-index-to-page cost #define _CPU_INDEX_PAGE_WEIGHT_ 0.017 /* CPU-index-to-page cost
* weighting factor */ * weighting factor */
#define _MAX_KEYS_ INDEX_MAX_KEYS /* maximum number of keys in an
* index */
#define _TID_SIZE_ 6 /* sizeof(itemid) (from ../h/itemid.h) */
/* /*
* Size estimates * Size estimates
...@@ -50,9 +47,9 @@ ...@@ -50,9 +47,9 @@
#define _NONAME_RELATION_PAGES_ 1 #define _NONAME_RELATION_PAGES_ 1
#define _NONAME_RELATION_TUPLES_ 10 #define _NONAME_RELATION_TUPLES_ 10
/* The length of a variable-length field in bytes /* The length of a variable-length field in bytes (stupid estimate...)
*/ */
#define _DEFAULT_ATTRIBUTE_WIDTH_ (2 * _TID_SIZE_) #define _DEFAULT_ATTRIBUTE_WIDTH_ 12
/* /*
* Flags and identifiers * Flags and identifiers
...@@ -63,9 +60,6 @@ ...@@ -63,9 +60,6 @@
/* used to be -1 */ /* used to be -1 */
#define _NONAME_RELATION_ID_ InvalidOid #define _NONAME_RELATION_ID_ InvalidOid
/* #define deactivate_joininfo(joininfo) joininfo->inactive=true*/
/*#define joininfo_inactive(joininfo) joininfo->inactive */
/* GEQO switch according to number of relations in a query */ /* GEQO switch according to number of relations in a query */
#define GEQO_RELS 11 #define GEQO_RELS 11
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment