From: Thomas Markwalder Date: Thu, 26 Mar 2026 13:27:04 +0000 (-0400) Subject: [#4342] Addressed review comments X-Git-Tag: Kea-3.1.8~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75db4d74dd8fb86d6cdcc04aa449ea230e8658b5;p=thirdparty%2Fkea.git [#4342] Addressed review comments modified: changelog_unreleased/4342-get-rid-of-json_supported-logic-in-mysql-and-postgresql-code modified: src/share/database/scripts/pgsql/upgrade_032_to_033.sh.in --- diff --git a/changelog_unreleased/4342-get-rid-of-json_supported-logic-in-mysql-and-postgresql-code b/changelog_unreleased/4342-get-rid-of-json_supported-logic-in-mysql-and-postgresql-code index 7f03f72528..ffd571a57b 100644 --- a/changelog_unreleased/4342-get-rid-of-json_supported-logic-in-mysql-and-postgresql-code +++ b/changelog_unreleased/4342-get-rid-of-json_supported-logic-in-mysql-and-postgresql-code @@ -1,6 +1,6 @@ [func] tmark Auto detection of JSON support in MySQL - and PostgreSQL databases has been removed - All supported version should now include - JSON support. + and PostgreSQL databases has been removed. + All database versions with active support + should now include JSON support. (Gitlab #4342) diff --git a/src/share/database/scripts/pgsql/upgrade_032_to_033.sh.in b/src/share/database/scripts/pgsql/upgrade_032_to_033.sh.in index ecb1aaa9a7..804093db73 100755 --- a/src/share/database/scripts/pgsql/upgrade_032_to_033.sh.in +++ b/src/share/database/scripts/pgsql/upgrade_032_to_033.sh.in @@ -101,6 +101,7 @@ BEGIN RETURN NULL; END; \$lease6_ADEL\$ LANGUAGE plpgsql; + -- Update the schema version number. UPDATE schema_version SET version = '33', minor = '0';