diff options
| author | Tom Lane | 2000-03-17 02:36:41 +0000 |
|---|---|---|
| committer | Tom Lane | 2000-03-17 02:36:41 +0000 |
| commit | 341b328b180e65d1fa5c8f2235cf101c8a12824f (patch) | |
| tree | 88d54198ffa15aea581251471f8c062ae9e3142e /src/include/optimizer | |
| parent | bc1f117094fbe2921f37923d8f7528284cb26dfc (diff) | |
Fix a bunch of minor portability problems and maybe-bugs revealed by
running gcc and HP's cc with warnings cranked way up. Signed vs unsigned
comparisons, routines declared static and then defined not-static,
that kind of thing. Tedious, but perhaps useful...
Diffstat (limited to 'src/include/optimizer')
| -rw-r--r-- | src/include/optimizer/subselect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/optimizer/subselect.h b/src/include/optimizer/subselect.h index d4970e48481..a00158deb94 100644 --- a/src/include/optimizer/subselect.h +++ b/src/include/optimizer/subselect.h @@ -9,7 +9,7 @@ #include "nodes/plannodes.h" -extern int PlannerQueryLevel; /* level of current query */ +extern Index PlannerQueryLevel; /* level of current query */ extern List *PlannerInitPlan; /* init subplans for current query */ extern List *PlannerParamVar; /* to get Var from Param->paramid */ extern int PlannerPlanId; /* to assign unique ID to subquery plans */ |
