From 377ac27b9983790411b0e37c520dd6388d9c01b1 Mon Sep 17 00:00:00 2001 From: Edward Karavakis Date: Wed, 24 Apr 2024 09:51:11 +0200 Subject: [PATCH] Fix for postgresql 16 --- main/etc/sql/postgres_partition.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/etc/sql/postgres_partition.sql b/main/etc/sql/postgres_partition.sql index 42eb4843..a8e4a73b 100644 --- a/main/etc/sql/postgres_partition.sql +++ b/main/etc/sql/postgres_partition.sql @@ -1,7 +1,7 @@ SELECT partman.create_parent( p_parent_table => 'doma_idds.contents', p_control => 'request_id', -p_type => 'native', +p_type => 'range', p_interval=> '1000', p_premake => 3 ); @@ -9,7 +9,7 @@ p_premake => 3 SELECT partman.create_parent( p_parent_table => 'doma_idds.contents_ext', p_control => 'request_id', -p_type => 'native', +p_type => 'range', p_interval=> '1000', p_premake => 3 ); \ No newline at end of file