Вы можете реализовать эту функцию в plpg sql:
create or replace function cascade_rounding(float[])
returns int[] immutable language plpgsql as $$
declare
fp_total float = 0;
int_total int = 0;
fp_value float;
int_value int;
result int[];
begin
foreach fp_value in array $1 loop
int_value := round(fp_value + fp_total) - int_total;
fp_total := fp_total + fp_value;
int_total := int_total + int_value;
result := result || int_value;
end loop;
return result;
end $$;
select cascade_rounding(array[1.1, 1.2, 1.4, 1.2, 1.3, 1.4, 1.4])
cascade_rounding
------------------
{1,1,2,1,1,2,1}
(1 row)
Попробуйте функцию в Db <> fiddle.
Обновить. Вы можете применить функцию к столбцу. Пример таблицы:
create table my_table(id serial primary key, float_number float);
insert into my_table (float_number)
select unnest(array[1.1, 1.2, 1.4, 1.2, 1.3, 1.4, 1.4])
Запрос:
select
unnest(array_agg(id order by id)) as id,
unnest(array_agg(float_number order by id)) as float_number,
unnest(cascade_rounding(array_agg(float_number order by id))) as int_number
from my_table;
Однако это не идеальное решение. Запрос довольно сложный и неоптимальный.
В Postgres вы можете создать собственный агрегат с намерением использовать его в качестве оконной функции. Это не особенно сложно, но требует определенных знаний, см. Определяемые пользователем агрегаты в документации.
create type cr_type as (int_value int, fp_total float, int_total int);
create or replace function cr_state(state cr_type, fp_value float)
returns cr_type language plpgsql as $$
begin
state.int_value := round(fp_value + state.fp_total) - state.int_total;
state.fp_total := state.fp_total + fp_value;
state.int_total := state.int_total + state.int_value;
return state;
end $$;
create or replace function cr_final(state cr_type)
returns int language plpgsql as $$
declare
begin
return state.int_value;
end $$;
create aggregate cascade_rounding_window(float) (
sfunc = cr_state,
stype = cr_type,
finalfunc = cr_final,
initcond = '(0, 0, 0)'
);
Использование агрегата в качестве оконной функции:
select
id,
float_number,
cascade_rounding_window(float_number) over (order by id) as int_number
from my_table;
id | float_number | int_number
----+--------------+------------
1 | 1.1 | 1
2 | 1.2 | 1
3 | 1.4 | 2
4 | 1.2 | 1
5 | 1.3 | 1
6 | 1.4 | 2
7 | 1.4 | 1
(7 rows)
Db <> скрипку.