File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -110,8 +110,8 @@ static dlist_head *changedVars = NULL;
110110static MemoryContext changedVarsContext = NULL ;
111111static dlist_head * changedVarsStack = NULL ;
112112#define get_actual_changed_vars_list () \
113- (dlist_head_element(ChangedVarsStackNode, node, changedVarsStack))-> \
114- changedVarsList
113+ (( dlist_head_element(ChangedVarsStackNode, node, changedVarsStack))-> \
114+ changedVarsList)
115115
116116
117117/*
@@ -981,7 +981,7 @@ variable_select_by_values(PG_FUNCTION_ARGS)
981981 oldcontext = MemoryContextSwitchTo (funcctx -> multi_call_memory_ctx );
982982
983983 funcctx -> tuple_desc = CreateTupleDescCopy (
984- * get_actual_value_record (variable ).tupdesc );
984+ ( * get_actual_value_record (variable ) ).tupdesc );
985985
986986 var = (VariableIteratorRec * ) palloc (sizeof (VariableIteratorRec ));
987987 var -> iterator = array_create_iterator (values , 0 , NULL );
Original file line number Diff line number Diff line change @@ -136,9 +136,9 @@ extern void insert_savepoint(HashVariableEntry *variable,
136136
137137/* Internal macros to manage with dlist structure */
138138#define get_actual_value_scalar (variable ) \
139- &((dlist_head_element(ValueHistoryEntry, node, &variable->data))->value.scalar)
139+ ( &((dlist_head_element(ValueHistoryEntry, node, &variable->data))->value.scalar) )
140140#define get_actual_value_record (variable ) \
141- &((dlist_head_element(ValueHistoryEntry, node, &variable->data))->value.record)
141+ ( &((dlist_head_element(ValueHistoryEntry, node, &variable->data))->value.record) )
142142#define get_history_entry (node_ptr ) \
143143 dlist_container(ValueHistoryEntry, node, node_ptr)
144144
You can’t perform that action at this time.
0 commit comments