Re: tuple radix sort - Mailing list pgsql-hackers

From Álvaro Herrera
Subject Re: tuple radix sort
Date
Msg-id 202511201109.hwygyecuux2n@alvherre.pgsql
Whole thread Raw
In response to Re: tuple radix sort  (John Naylor <johncnaylorls@gmail.com>)
Responses Re: tuple radix sort
List pgsql-hackers
On 2025-Nov-12, John Naylor wrote:

> +/*
> + * Based on implementation in https://github.com/skarupke/ska_sort (Boost license),
> + * with the following noncosmetic change:
> + *  - count sorted partitions in every pass, rather than maintaining a
> + *    list of unsorted partitions
> + */
> +static void
> +radix_sort_tuple(SortTuple *begin, size_t n_elems, int level, Tuplesortstate *state)

I think given https://www.boost.org/LICENSE_1_0.txt you should include a
copy of the Boost license in this comment, as well as the copyright
statement from the hpp file,

//          Copyright Malte Skarupke 2016.
// Distributed under the Boost Software License, Version 1.0.
//    (See http://www.boost.org/LICENSE_1_0.txt)

-- 
Álvaro Herrera         PostgreSQL Developer  —  https://www.EnterpriseDB.com/



pgsql-hackers by date:

Previous
From: John Naylor
Date:
Subject: Re: tuple radix sort
Next
From: John Naylor
Date:
Subject: Re: tuple radix sort