Open nathan-zhu opened 5 years ago
This is weird.
CREATE EXTENSION pg_pathman;
create table part_test(id int, info text, crt_time timestamp without time zone not null);
select create_range_partitions('part_test'::regclass, 'crt_time', '2016-10-25 00:00:00'::timestamp without time zone, interval '1 year', 24, false);
works for me on 9.5. Probably you have wrong search_path?
Problem description
select create_range_partitions('part_test'::regclass, 'crt_time', '2016-10-25 00:00:00'::timestamp without time zone, interval '1 year', 24, false);
get error during create range partitions.
Environment
postgres 9.5 ubuntu18.04