Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/backend/executor/nodeShareInputScan.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ typedef struct shareinput_Xslice_state
} shareinput_Xslice_state;

/* shared memory hash table holding 'shareinput_Xslice_state' entries */
static HTAB *shareinput_Xslice_hash = NULL;
HTAB *shareinput_Xslice_hash = NULL;

/*
* The tuplestore files for all share input scans are held in one SharedFileSet.
Expand All @@ -135,7 +135,7 @@ static HTAB *shareinput_Xslice_hash = NULL;
* are reference counted separately, and we clean up the files backing each
* individual ShareInputScan whenever its reference count reaches zero.
*/
static dsm_handle *shareinput_Xslice_dsm_handle_ptr;
dsm_handle *shareinput_Xslice_dsm_handle_ptr;
static SharedFileSet *shareinput_Xslice_fileset;

/*
Expand Down