Skip to content

Commit

Permalink
Fix for postgresql 16
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardKaravakis committed Apr 24, 2024
1 parent 77610ea commit 377ac27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/etc/sql/postgres_partition.sql
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
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
);

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
);

0 comments on commit 377ac27

Please sign in to comment.