aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/cache
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1999-08-09 03:13:31 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1999-08-09 03:13:31 +0000
commit5af4b04f31a27ed60fe360e70acf67d208f883b3 (patch)
tree78d05fe02d63a0db3ce636ad13a2a655829a5372 /src/backend/utils/cache
parente9054829a2fcc6a34e12ca5be0195117602d9f13 (diff)
downloadpostgresql-5af4b04f31a27ed60fe360e70acf67d208f883b3.tar.gz
postgresql-5af4b04f31a27ed60fe360e70acf67d208f883b3.zip
Move get_attdisbursion to lsyscache. Clean up get_typdefault.
Diffstat (limited to 'src/backend/utils/cache')
-rw-r--r--src/backend/utils/cache/lsyscache.c182
-rw-r--r--src/backend/utils/cache/syscache.c111
2 files changed, 174 insertions, 119 deletions
diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c
index 07583a4b72a..cd657ca3272 100644
--- a/src/backend/utils/cache/lsyscache.c
+++ b/src/backend/utils/cache/lsyscache.c
@@ -1,13 +1,12 @@
/*-------------------------------------------------------------------------
*
* lsyscache.c
- * Routines to access information within system caches
+ * Convenience routines for common queries in the system catalog cache.
*
* Copyright (c) 1994, Regents of the University of California
*
- *
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.31 1999/07/17 20:18:01 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.32 1999/08/09 03:13:30 tgl Exp $
*
* NOTES
* Eventually, the index information should go through here, too.
@@ -15,7 +14,6 @@
*/
#include "postgres.h"
-
#include "catalog/pg_operator.h"
#include "catalog/pg_type.h"
#include "utils/lsyscache.h"
@@ -166,6 +164,77 @@ get_atttypmod(Oid relid, AttrNumber attnum)
return -1;
}
+/*
+ * get_attdisbursion
+ *
+ * Retrieve the disbursion statistic for an attribute,
+ * or produce an estimate if no info is available.
+ *
+ * min_estimate is the minimum estimate to return if insufficient data
+ * is available to produce a reliable value. This value may vary
+ * depending on context. (For example, when deciding whether it is
+ * safe to use a hashjoin, we want to be more conservative than when
+ * estimating the number of tuples produced by an equijoin.)
+ */
+double
+get_attdisbursion(Oid relid, AttrNumber attnum, double min_estimate)
+{
+ HeapTuple atp;
+ double disbursion;
+ int32 ntuples;
+
+ atp = SearchSysCacheTuple(ATTNUM,
+ ObjectIdGetDatum(relid),
+ Int16GetDatum(attnum),
+ 0, 0);
+ if (!HeapTupleIsValid(atp))
+ {
+ /* this should not happen */
+ elog(ERROR, "get_attdisbursion: no attribute tuple %u %d",
+ relid, attnum);
+ return min_estimate;
+ }
+
+ disbursion = ((Form_pg_attribute) GETSTRUCT(atp))->attdisbursion;
+ if (disbursion > 0.0)
+ return disbursion; /* we have a specific estimate */
+
+ /*
+ * Disbursion is either 0 (no data available) or -1 (disbursion
+ * is 1/numtuples). Either way, we need the relation size.
+ */
+
+ atp = SearchSysCacheTuple(RELOID,
+ ObjectIdGetDatum(relid),
+ 0, 0, 0);
+ if (!HeapTupleIsValid(atp))
+ {
+ /* this should not happen */
+ elog(ERROR, "get_attdisbursion: no relation tuple %u", relid);
+ return min_estimate;
+ }
+
+ ntuples = ((Form_pg_class) GETSTRUCT(atp))->reltuples;
+
+ if (ntuples == 0)
+ return min_estimate; /* no data available */
+
+ if (disbursion < 0.0) /* VACUUM thinks there are no duplicates */
+ return 1.0 / (double) ntuples;
+
+ /*
+ * VACUUM ANALYZE has not been run for this table.
+ * Produce an estimate = 1/numtuples. This may produce
+ * unreasonably small estimates for large tables, so limit
+ * the estimate to no less than min_estimate.
+ */
+ disbursion = 1.0 / (double) ntuples;
+ if (disbursion < min_estimate)
+ disbursion = min_estimate;
+
+ return disbursion;
+}
+
/* ---------- INDEX CACHE ---------- */
/* watch this space...
@@ -504,15 +573,110 @@ get_typalign(Oid typid)
/*
* get_typdefault -
*
- * Given the type OID, return the default value of the ADT.
- *
+ * Given a type OID, return the typdefault field associated with that
+ * type, or Datum(NULL) if there is no typdefault. (This implies
+ * that pass-by-value types can't have a default value that has
+ * a representation of zero. Not worth fixing now.)
+ * The result points to palloc'd storage for non-pass-by-value types.
*/
-struct varlena *
+Datum
get_typdefault(Oid typid)
{
- struct varlena *typdefault = (struct varlena *) TypeDefaultRetrieve(typid);
+ struct varlena *typDefault;
+ int32 dataSize;
+ HeapTuple typeTuple;
+ Form_pg_type type;
+ int32 typLen;
+ bool typByVal;
+ Datum returnValue;
+
+ /*
+ * First, see if there is a non-null typdefault field (usually there isn't)
+ */
+ typDefault = (struct varlena *)
+ SearchSysCacheGetAttribute(TYPOID,
+ Anum_pg_type_typdefault,
+ ObjectIdGetDatum(typid),
+ 0, 0, 0);
+
+ if (typDefault == NULL)
+ return PointerGetDatum(NULL);
+
+ dataSize = VARSIZE(typDefault) - VARHDRSZ;
+
+ /*
+ * Need the type's length and byVal fields.
+ *
+ * XXX silly to repeat the syscache search that SearchSysCacheGetAttribute
+ * just did --- but at present this path isn't taken often enough to
+ * make it worth fixing.
+ */
+ typeTuple = SearchSysCacheTuple(TYPOID,
+ ObjectIdGetDatum(typid),
+ 0, 0, 0);
+
+ if (!HeapTupleIsValid(typeTuple))
+ elog(ERROR, "get_typdefault: failed to lookup type %u", typid);
+
+ type = (Form_pg_type) GETSTRUCT(typeTuple);
+ typLen = type->typlen;
+ typByVal = type->typbyval;
+
+ if (typByVal)
+ {
+ int8 i8;
+ int16 i16;
+ int32 i32 = 0;
+
+ if (dataSize == typLen)
+ {
+ switch (typLen)
+ {
+ case sizeof(int8):
+ memcpy((char *) &i8, VARDATA(typDefault), sizeof(int8));
+ i32 = i8;
+ break;
+ case sizeof(int16):
+ memcpy((char *) &i16, VARDATA(typDefault), sizeof(int16));
+ i32 = i16;
+ break;
+ case sizeof(int32):
+ memcpy((char *) &i32, VARDATA(typDefault), sizeof(int32));
+ break;
+ }
+ returnValue = Int32GetDatum(i32);
+ }
+ else
+ returnValue = PointerGetDatum(NULL);
+ }
+ else if (typLen < 0)
+ {
+ /* variable-size type */
+ if (dataSize < 0)
+ returnValue = PointerGetDatum(NULL);
+ else
+ {
+ returnValue = PointerGetDatum(palloc(VARSIZE(typDefault)));
+ memcpy((char *) DatumGetPointer(returnValue),
+ (char *) typDefault,
+ (int) VARSIZE(typDefault));
+ }
+ }
+ else
+ {
+ /* fixed-size pass-by-ref type */
+ if (dataSize != typLen)
+ returnValue = PointerGetDatum(NULL);
+ else
+ {
+ returnValue = PointerGetDatum(palloc(dataSize));
+ memcpy((char *) DatumGetPointer(returnValue),
+ VARDATA(typDefault),
+ (int) dataSize);
+ }
+ }
- return typdefault;
+ return returnValue;
}
/*
diff --git a/src/backend/utils/cache/syscache.c b/src/backend/utils/cache/syscache.c
index 4e4c354e07b..470780676c2 100644
--- a/src/backend/utils/cache/syscache.c
+++ b/src/backend/utils/cache/syscache.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.33 1999/07/20 17:14:06 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.34 1999/08/09 03:13:30 tgl Exp $
*
* NOTES
* These routines allow the parser/planner/executor to perform
@@ -631,112 +631,3 @@ SearchSysCacheGetAttribute(int cacheId,
heap_close(relation);
return returnValue;
}
-
-/*
- * TypeDefaultRetrieve
- *
- * Given a type OID, return the typdefault field associated with that
- * type. The result is a Datum, and points to palloc'd storage for
- * non-pass-by-value types.
- *
- * [identical to get_typdefault, expecting a (struct varlena *) as ret val.
- * some day, either of the functions should be removed -ay 10/94]
- */
-void *
-TypeDefaultRetrieve(Oid typId)
-{
- struct varlena *typDefault;
- int32 dataSize;
- HeapTuple typeTuple;
- Form_pg_type type;
- int32 typByVal,
- typLen;
- void *returnValue;
-
- /*
- * First, see if there is a non-null typdefault field (usually there isn't)
- */
- typDefault = (struct varlena *)
- SearchSysCacheGetAttribute(TYPOID,
- Anum_pg_type_typdefault,
- ObjectIdGetDatum(typId),
- 0, 0, 0);
-
- if (typDefault == NULL)
- {
-#ifdef CACHEDEBUG
- elog(DEBUG, "TypeDefaultRetrieve: No extractable typdefault in %s(%d)",
- cacheinfo[TYPOID].name, TYPOID);
-#endif /* defined(CACHEDEBUG) */
- return NULL;
- }
-
- dataSize = VARSIZE(typDefault) - VARHDRSZ;
-
- /*
- * Need the type's length and byVal fields.
- *
- * XXX silly to repeat the syscache search that SearchSysCacheGetAttribute
- * just did --- but at present this path isn't taken often enough to
- * make it worth fixing.
- */
- typeTuple = SearchSysCacheTuple(TYPOID,
- ObjectIdGetDatum(typId),
- 0, 0, 0);
-
- if (!HeapTupleIsValid(typeTuple))
- {
- /* should never get here, really... */
-#ifdef CACHEDEBUG
- elog(DEBUG, "TypeDefaultRetrieve: Lookup in %s(%d) failed",
- cacheinfo[TYPOID].name, TYPOID);
-#endif /* defined(CACHEDEBUG) */
- return NULL;
- }
-
- type = (Form_pg_type) GETSTRUCT(typeTuple);
- typLen = type->typlen;
- typByVal = type->typbyval;
-
- if (typByVal)
- {
- int8 i8;
- int16 i16;
- int32 i32 = 0;
-
- if (dataSize == typLen)
- {
- switch (typLen)
- {
- case sizeof(int8):
- memcpy((char *) &i8, VARDATA(typDefault), sizeof(int8));
- i32 = i8;
- break;
- case sizeof(int16):
- memcpy((char *) &i16, VARDATA(typDefault), sizeof(int16));
- i32 = i16;
- break;
- case sizeof(int32):
- memcpy((char *) &i32, VARDATA(typDefault), sizeof(int32));
- break;
- }
- returnValue = (void *) i32;
- }
- else
- returnValue = NULL;
- }
- else
- {
- if ((typLen < 0 && dataSize < 0) || dataSize != typLen)
- returnValue = NULL;
- else
- {
- returnValue = (void *) palloc(VARSIZE(typDefault));
- memcpy((char *) returnValue,
- (char *) typDefault,
- (int) VARSIZE(typDefault));
- }
- }
-
- return returnValue;
-}