File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4102,11 +4102,9 @@ jsonb_subscription_evaluate(PG_FUNCTION_ARGS)
4102
4102
{
4103
4103
SubscriptionRefExprState * sbstate = (SubscriptionRefExprState * ) PG_GETARG_POINTER (0 );
4104
4104
SubscriptionExecData * sbsdata = (SubscriptionExecData * ) PG_GETARG_POINTER (1 );
4105
- ExprContext * econtext = sbsdata -> xprcontext ;
4106
- bool * is_null = sbsdata -> isNull ;
4107
4105
SubscriptionRef * jsonb_ref = (SubscriptionRef * ) sbstate -> xprstate .expr ;
4106
+ bool * is_null = sbsdata -> isNull ;
4108
4107
bool is_assignment = (jsonb_ref -> refassgnexpr != NULL );
4109
- bool eisnull ;
4110
4108
text * * path ;
4111
4109
int i = 0 ;
4112
4110
@@ -4116,9 +4114,11 @@ jsonb_subscription_evaluate(PG_FUNCTION_ARGS)
4116
4114
4117
4115
if (is_assignment )
4118
4116
{
4119
- Datum sourceData ;
4120
- Datum save_datum ;
4121
- bool save_isNull ;
4117
+ ExprContext * econtext = sbsdata -> xprcontext ;
4118
+ Datum sourceData ;
4119
+ Datum save_datum ;
4120
+ bool save_isNull ;
4121
+ bool eisnull ;
4122
4122
4123
4123
/*
4124
4124
* We might have a nested-assignment situation, in which the
You can’t perform that action at this time.
0 commit comments