aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_oper.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-04-27 04:08:07 +0000
committerBruce Momjian <bruce@momjian.us>1998-04-27 04:08:07 +0000
commit09baa3cc81fc7c53872e10a4cc196bff61207b19 (patch)
treed6e4008c07352e9a5dabcf69de65882db05c84c9 /src/backend/parser/parse_oper.c
parente8fd57d7633ab9ddcd64861e13a59aa8dfbc3b05 (diff)
downloadpostgresql-09baa3cc81fc7c53872e10a4cc196bff61207b19.tar.gz
postgresql-09baa3cc81fc7c53872e10a4cc196bff61207b19.zip
This patch...
1. Removes the unnecessary "#define AbcRegProcedure 123"'s from pg_proc.h. 2. Changes those #defines to use the names already defined in fmgr.h. 3. Forces the make of fmgr.h in backend/Makefile instead of having it made as a dependency in access/common/Makefile *hack*hack*hack* 4. Rearranged the #includes to a less helter-skelter arrangement, also changing <file.h> to "file.h" to signify a non-system header. 5. Removed "pg_proc.h" from files where its only purpose was for the #defines removed in item #1. 6. Added "fmgr.h" to each file changed for completeness sake. Turns out that #6 was not necessary for some files because fmgr.h was being included in a roundabout way SIX levels deep by the first include. "access/genam.h" ->"access/relscan.h" ->"utils/rel.h" ->"access/strat.h" ->"access/skey.h" ->"fmgr.h" So adding fmgr.h really didn't add anything to the compile, hopefully just made it clearer to the programmer. S Darren.
Diffstat (limited to 'src/backend/parser/parse_oper.c')
-rw-r--r--src/backend/parser/parse_oper.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/parser/parse_oper.c b/src/backend/parser/parse_oper.c
index b24094924aa..e2eb6b901d4 100644
--- a/src/backend/parser/parse_oper.c
+++ b/src/backend/parser/parse_oper.c
@@ -7,20 +7,20 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.9 1998/02/26 04:33:33 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.10 1998/04/27 04:06:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <string.h>
#include "postgres.h"
-#include <fmgr.h>
+
#include "access/heapam.h"
#include "access/relscan.h"
#include "catalog/catname.h"
#include "catalog/pg_operator.h"
-#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
+#include "fmgr.h"
#include "parser/parse_oper.h"
#include "parser/parse_type.h"
#include "storage/bufmgr.h"
@@ -89,12 +89,12 @@ binary_oper_get_candidates(char *opname,
ScanKeyEntryInitialize(&opKey[0], 0,
Anum_pg_operator_oprname,
- NameEqualRegProcedure,
+ F_NAMEEQ,
NameGetDatum(opname));
ScanKeyEntryInitialize(&opKey[1], 0,
Anum_pg_operator_oprkind,
- CharacterEqualRegProcedure,
+ F_CHAREQ,
CharGetDatum('b'));
@@ -110,7 +110,7 @@ binary_oper_get_candidates(char *opname,
ScanKeyEntryInitialize(&opKey[2], 0,
Anum_pg_operator_oprright,
- ObjectIdEqualRegProcedure,
+ F_OIDEQ,
ObjectIdGetDatum(rightTypeId));
}
}
@@ -120,7 +120,7 @@ binary_oper_get_candidates(char *opname,
ScanKeyEntryInitialize(&opKey[2], 0,
Anum_pg_operator_oprleft,
- ObjectIdEqualRegProcedure,
+ F_OIDEQ,
ObjectIdGetDatum(leftTypeId));
}
else
@@ -399,14 +399,14 @@ unary_oper_get_candidates(char *op,
int ncandidates = 0;
static ScanKeyData opKey[2] = {
- {0, Anum_pg_operator_oprname, NameEqualRegProcedure},
- {0, Anum_pg_operator_oprkind, CharacterEqualRegProcedure}};
+ {0, Anum_pg_operator_oprname, F_NAMEEQ},
+ {0, Anum_pg_operator_oprkind, F_CHAREQ}};
*candidates = NULL;
- fmgr_info(NameEqualRegProcedure, (FmgrInfo *) &opKey[0].sk_func);
+ fmgr_info(F_NAMEEQ, (FmgrInfo *) &opKey[0].sk_func);
opKey[0].sk_argument = NameGetDatum(op);
- fmgr_info(CharacterEqualRegProcedure, (FmgrInfo *) &opKey[1].sk_func);
+ fmgr_info(F_CHAREQ, (FmgrInfo *) &opKey[1].sk_func);
opKey[1].sk_argument = CharGetDatum(rightleft);
/* currently, only "unknown" can be coerced */