Skip to content

Commit

Permalink
Fix #8: in rum_tuplesort_begin_rum() and rum_tuplesort_begin_rumkey()…
Browse files Browse the repository at this point in the history
… there isn't argument enforceUnique
  • Loading branch information
Artur Zakirov committed Oct 19, 2016
1 parent 3987809 commit abecdda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rumsort.c
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ rum_tuplesort_begin_rum(int workMem, int nKeys, bool randomAccess,
state->nKeys = nKeys;

TRACE_POSTGRESQL_SORT_START(INDEX_SORT,
enforceUnique,
false, /* no unique check */
state->nKeys,
workMem,
randomAccess);
Expand Down Expand Up @@ -1190,7 +1190,7 @@ rum_tuplesort_begin_rumkey(int workMem, FmgrInfo *cmp)
#endif

TRACE_POSTGRESQL_SORT_START(INDEX_SORT,
enforceUnique,
false, /* no unique check */
2,
workMem,
false);
Expand Down

0 comments on commit abecdda

Please sign in to comment.