diff options
Diffstat (limited to 'src/backend/statistics/dependencies.c')
-rw-r--r-- | src/backend/statistics/dependencies.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/statistics/dependencies.c b/src/backend/statistics/dependencies.c index 0b26e4166d9..8a71c2b534a 100644 --- a/src/backend/statistics/dependencies.c +++ b/src/backend/statistics/dependencies.c @@ -279,8 +279,8 @@ dependency_degree(int numrows, HeapTuple *rows, int k, AttrNumber *dependency, * build an array of SortItem(s) sorted using the multi-sort support * * XXX This relies on all stats entries pointing to the same tuple - * descriptor. For now that assumption holds, but it might change in - * the future for example if we support statistics on multiple tables. + * descriptor. For now that assumption holds, but it might change in the + * future for example if we support statistics on multiple tables. */ items = build_sorted_items(numrows, &nitems, rows, stats[0]->tupDesc, mss, k, attnums_dep); @@ -300,8 +300,8 @@ dependency_degree(int numrows, HeapTuple *rows, int k, AttrNumber *dependency, { /* * Check if the group ended, which may be either because we processed - * all the items (i==nitems), or because the i-th item is not equal - * to the preceding one. + * all the items (i==nitems), or because the i-th item is not equal to + * the preceding one. */ if (i == nitems || multi_sort_compare_dims(0, k - 2, &items[i - 1], &items[i], mss) != 0) |