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; 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 {},