Skip to content

Commit

Permalink
fix block endings
Browse files Browse the repository at this point in the history
  • Loading branch information
x4m committed Dec 18, 2017
1 parent 0519386 commit 47e0335
Show file tree
Hide file tree
Showing 3 changed files with 150 additions and 83 deletions.
3 changes: 2 additions & 1 deletion src/backend/access/gist/gist.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,8 @@ gistdoinsert(Relation r, IndexTuple itup, Size freespace, GISTSTATE *giststate)
GISTInsertStack *item;
OffsetNumber downlinkoffnum;

if(GistPageIsDeleted(stack->page)) {
if(GistPageIsDeleted(stack->page))
{
UnlockReleaseBuffer(stack->buffer);
xlocked = false;
state.stack = stack = stack->parent;
Expand Down
Loading

0 comments on commit 47e0335

Please sign in to comment.