diff options
Diffstat (limited to 'src/backend/executor/nodeWorktablescan.c')
-rw-r--r-- | src/backend/executor/nodeWorktablescan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeWorktablescan.c b/src/backend/executor/nodeWorktablescan.c index bdba9e0bfcd..23b5b949857 100644 --- a/src/backend/executor/nodeWorktablescan.c +++ b/src/backend/executor/nodeWorktablescan.c @@ -95,8 +95,8 @@ ExecWorkTableScan(WorkTableScanState *node) param = &(estate->es_param_exec_vals[plan->wtParam]); Assert(param->execPlan == NULL); Assert(!param->isnull); - node->rustate = (RecursiveUnionState *) DatumGetPointer(param->value); - Assert(node->rustate && IsA(node->rustate, RecursiveUnionState)); + node->rustate = castNode(RecursiveUnionState, DatumGetPointer(param->value)); + Assert(node->rustate); /* * The scan tuple type (ie, the rowtype we expect to find in the work |