Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions demo/demodb_schema
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;
Expand Down
5 changes: 0 additions & 5 deletions src/object/schema_system_catalog_install.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{},
Expand Down
Loading