Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix update to 5.2.2 #755

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions updates/pg_partman--5.2.1--5.2.2.sql
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
-- SEE CHANGELOG.md for all notes and details on this update

ALTER TABLE @extschema@.part_config ADD COLUMN time_encoder text;
ALTER TABLE @extschema@.part_config ADD COLUMN time_decoder text;
ALTER TABLE @extschema@.part_config_sub ADD COLUMN sub_time_encoder text;
ALTER TABLE @extschema@.part_config_sub ADD COLUMN sub_time_decoder text;
ALTER TABLE @extschema@.part_config ADD COLUMN IF NOT EXISTS time_encoder text;
ALTER TABLE @extschema@.part_config ADD COLUMN IF NOT EXISTS time_decoder text;
ALTER TABLE @extschema@.part_config_sub ADD COLUMN IF NOT EXISTS sub_time_encoder text;
ALTER TABLE @extschema@.part_config_sub ADD COLUMN IF NOT EXISTS sub_time_decoder text;


CREATE OR REPLACE FUNCTION @extschema@.check_control_type(p_parent_schema text, p_parent_tablename text, p_control text) RETURNS TABLE (general_type text, exact_type text)
Expand Down