1178{
1179 PlannerInfo *root = (PlannerInfo *)PG_GETARG_POINTER(0);
1180
1181 List *
args = (List *)PG_GETARG_POINTER(2);
1182 JoinType jointype = (JoinType) PG_GETARG_INT16(3);
1183 int mode = PG_GETARG_INT32(4);
1184
1185 POSTGIS_DEBUGF(2, "%s: entered function", __func__);
1186
1187
1188 if (list_length(args) != 2)
1189 {
1190 POSTGIS_DEBUGF(2, "%s: got nargs == %d", __func__, list_length(args));
1192 }
1193
1194
1195 if (jointype != JOIN_INNER)
1196 {
1197 POSTGIS_DEBUGF(1, "%s: jointype %d not supported", __func__, jointype);
1199 }
1200
1202}
#define DEFAULT_ND_JOINSEL
float8 gserialized_joinsel_internal(PlannerInfo *root, List *args, JoinType jointype, int mode)