Skip to content

Commit abecdda

Browse files
author
Artur Zakirov
committed
Fix #8: in rum_tuplesort_begin_rum() and rum_tuplesort_begin_rumkey() there isn't argument enforceUnique
1 parent 3987809 commit abecdda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rumsort.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ rum_tuplesort_begin_rum(int workMem, int nKeys, bool randomAccess,
11571157
state->nKeys = nKeys;
11581158

11591159
TRACE_POSTGRESQL_SORT_START(INDEX_SORT,
1160-
enforceUnique,
1160+
false, /* no unique check */
11611161
state->nKeys,
11621162
workMem,
11631163
randomAccess);
@@ -1190,7 +1190,7 @@ rum_tuplesort_begin_rumkey(int workMem, FmgrInfo *cmp)
11901190
#endif
11911191

11921192
TRACE_POSTGRESQL_SORT_START(INDEX_SORT,
1193-
enforceUnique,
1193+
false, /* no unique check */
11941194
2,
11951195
workMem,
11961196
false);

0 commit comments

Comments
 (0)