1318{
1319 PlannerInfo *root = (PlannerInfo *) PG_GETARG_POINTER(0);
1320
1321 List *
args = (List *) PG_GETARG_POINTER(2);
1322 JoinType jointype = (JoinType) PG_GETARG_INT16(3);
1323 int mode = PG_GETARG_INT32(4);
1324
1325 POSTGIS_DEBUGF(2, "%s: entered function", __func__);
1326
1327
1328 if (list_length(args) != 2)
1329 {
1330 POSTGIS_DEBUGF(2, "%s: got nargs == %d", __func__, list_length(args));
1332 }
1333
1334
1335 if (jointype != JOIN_INNER)
1336 {
1337 POSTGIS_DEBUGF(1, "%s: jointype %d not supported", __func__, jointype);
1339 }
1340
1342}
#define DEFAULT_ND_JOINSEL
float8 gserialized_joinsel_internal(PlannerInfo *root, List *args, JoinType jointype, int mode)