From aa73bc2fe6b04eddff5361ccf4b5f1be3bb14a86 Mon Sep 17 00:00:00 2001 From: kangmin Date: Mon, 9 Feb 2026 14:30:41 +0900 Subject: [PATCH 1/2] Remove change_serial_owner method from db_serial --- src/object/schema_system_catalog_install.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/object/schema_system_catalog_install.cpp b/src/object/schema_system_catalog_install.cpp index b82cc51425f..ed29ffd2dc8 100644 --- a/src/object/schema_system_catalog_install.cpp +++ b/src/object/schema_system_catalog_install.cpp @@ -1877,11 +1877,6 @@ namespace cubschema {"created_time", "datetime"}, {"updated_time", "datetime"}, {attribute_kind::QUERY_SPEC, sm_define_view_serial_spec ()}, - /* - * Temporary: class method support in system view class for compatibility. - * To be removed when class/instance method support is officially dropped. - */ - {attribute_kind::CLASS_METHOD, "change_serial_owner", "au_change_serial_owner_method"}, }, // constraints {}, From a6c4380d5c2bf8d855a503f45b9e74d6b031c675 Mon Sep 17 00:00:00 2001 From: kangmin Date: Thu, 12 Feb 2026 16:48:16 +0900 Subject: [PATCH 2/2] rename db_serial to _db_serial --- demo/demodb_schema | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/demodb_schema b/demo/demodb_schema index ddf0f77934e..767716ff46e 100644 --- a/demo/demodb_schema +++ b/demo/demodb_schema @@ -6,7 +6,7 @@ create serial event_no minvalue 20422 maxvalue 10000000000000000000000000000000000000 nocycle; -call change_serial_owner ('event_no', 'PUBLIC') on class db_serial; +call change_serial_owner ('event_no', 'PUBLIC') on class _db_serial; call find_user('PUBLIC') on class db_user to auser; create serial stadium_no @@ -15,7 +15,7 @@ create serial stadium_no minvalue 30141 maxvalue 10000000000000000000000000000000000000 nocycle; -call change_serial_owner ('stadium_no', 'PUBLIC') on class db_serial; +call change_serial_owner ('stadium_no', 'PUBLIC') on class _db_serial; CREATE CLASS stadium; call change_owner('stadium', 'PUBLIC') on class db_root;