diff options
Diffstat (limited to 'src/backend/optimizer/path')
-rw-r--r-- | src/backend/optimizer/path/_deadcode/xfunc.c | 12 | ||||
-rw-r--r-- | src/backend/optimizer/path/indxpath.c | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/src/backend/optimizer/path/_deadcode/xfunc.c b/src/backend/optimizer/path/_deadcode/xfunc.c index d063a73199e..771cec3ecd9 100644 --- a/src/backend/optimizer/path/_deadcode/xfunc.c +++ b/src/backend/optimizer/path/_deadcode/xfunc.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/_deadcode/Attic/xfunc.c,v 1.10 1999/09/21 20:58:13 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/_deadcode/Attic/xfunc.c,v 1.11 1999/11/22 17:56:10 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -494,7 +494,7 @@ xfunc_func_expense(LispValue node, LispValue args) funcid = get_funcid((Func) node); /* look up tuple in cache */ - tupl = SearchSysCacheTuple(PROOID, + tupl = SearchSysCacheTuple(PROCOID, ObjectIdGetDatum(funcid), 0, 0, 0); if (!HeapTupleIsValid(tupl)) @@ -609,7 +609,7 @@ xfunc_width(LispValue clause) else if (IsA(clause, Var)) { /* base case: width is width of this attribute */ - tupl = SearchSysCacheTuple(TYPOID, + tupl = SearchSysCacheTuple(TYPEOID, ObjectIdGetDatum(get_vartype((Var) clause)), 0, 0, 0); if (!HeapTupleIsValid(tupl)) @@ -672,7 +672,7 @@ xfunc_width(LispValue clause) * * get function associated with this Oper, and treat this as * a * Func */ - tupl = SearchSysCacheTuple(OPROID, + tupl = SearchSysCacheTuple(OPEROID, ObjectIdGetDatum(get_opno((Oper) get_op(clause))), 0, 0, 0); if (!HeapTupleIsValid(tupl)) @@ -1303,7 +1303,7 @@ xfunc_func_width(RegProcedure funcid, LispValue args) /* lookup function and find its return type */ Assert(RegProcedureIsValid(funcid)); - tupl = SearchSysCacheTuple(PROOID, + tupl = SearchSysCacheTuple(PROCOID, ObjectIdGetDatum(funcid), 0, 0, 0); if (!HeapTupleIsValid(tupl)) @@ -1321,7 +1321,7 @@ xfunc_func_width(RegProcedure funcid, LispValue args) else /* function returns a base type */ { - tupl = SearchSysCacheTuple(TYPOID, + tupl = SearchSysCacheTuple(TYPEOID, ObjectIdGetDatum(proc->prorettype), 0, 0, 0); if (!HeapTupleIsValid(tupl)) diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index 3964d5d5bbe..4f52f9377d2 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.72 1999/09/18 19:06:54 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.73 1999/11/22 17:56:07 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1893,7 +1893,7 @@ prefix_quals(Var *leftop, Oid expr_op, */ if (pstatus == Prefix_Exact) { - optup = SearchSysCacheTuple(OPRNAME, + optup = SearchSysCacheTuple(OPERNAME, PointerGetDatum("="), ObjectIdGetDatum(datatype), ObjectIdGetDatum(datatype), @@ -1919,7 +1919,7 @@ prefix_quals(Var *leftop, Oid expr_op, * * We can always say "x >= prefix". */ - optup = SearchSysCacheTuple(OPRNAME, + optup = SearchSysCacheTuple(OPERNAME, PointerGetDatum(">="), ObjectIdGetDatum(datatype), ObjectIdGetDatum(datatype), @@ -1947,7 +1947,7 @@ prefix_quals(Var *leftop, Oid expr_op, prefix[prefixlen] = '\377'; prefix[prefixlen+1] = '\0'; - optup = SearchSysCacheTuple(OPRNAME, + optup = SearchSysCacheTuple(OPERNAME, PointerGetDatum("<="), ObjectIdGetDatum(datatype), ObjectIdGetDatum(datatype), |