DROP CHANGELOG changelog_name;
The name of the changelog to drop. If the name is case sensitive you must wrap it in double quotes; otherwise the system uses the lower case name.
Drop a Changelog using default database and schema
demodb.public/demostore# LIST CHANGELOGS;
+------------+------------+------------+------------+------------------------------------------+-------------------------------+-------------------------------+
| Name | Type | Owner | State | Properties | Created At | Updated At |
+============+============+============+============+==========================================+===============================+===============================+
| users | changelog | sysadmin | created | { "value.format": "json", "topic": | 2024-07-02 21:42:03 +0000 UTC | 2024-07-02 21:42:05 +0000 UTC |
| | | | | "users", "store": "demostore", | | |
| | | | | "primary.key": "userid" } | | |
+------------+------------+------------+------------+------------------------------------------+-------------------------------+-------------------------------+
demodb.public/demostore# DROP CHANGELOG "users";
+------------+---------------------+------------+------------------------------------------+
| Type | Name | Command | Summary |
+============+=====================+============+==========================================+
| query | demodb.public.users | DROP | relation demodb.public.users was dropped |
+------------+---------------------+------------+------------------------------------------+
demodb.public/demostore# LIST CHANGELOGS;
+------------+------------+------------+------------+-------------+-------------+-------------+
| Name | Type | Owner | State | Properties | Created At | Updated At |
+============+============+============+============+=============+=============+=============+
+------------+------------+------------+------------+-------------+-------------+-------------+
Drop a changelog using fully-qualified name
demodb.public/demostore# LIST CHANGELOGS IN SCHEMA otherdb."S1";
+------------+------------+------------+------------+------------------------------------------+-------------------------------+-------------------------------+
| Name | Type | Owner | State | Properties | Created At | Updated At |
+============+============+============+============+==========================================+===============================+===============================+
| UsersLog | changelog | sysadmin | created | { "value.format": "json", "topic": | 2024-07-02 21:46:40 +0000 UTC | 2024-07-02 21:46:41 +0000 UTC |
| | | | | "users", "store": "demostore", | | |
| | | | | "primary.key": "userid" } | | |
+------------+------------+------------+------------+------------------------------------------+-------------------------------+-------------------------------+
demodb.public/demostore# DROP CHANGELOG otherdb."S1"."UsersLog";
+------------+---------------------+------------+------------------------------------------+
| Type | Name | Command | Summary |
+============+=====================+============+==========================================+
| query | otherdb.S1.UsersLog | DROP | relation otherdb.S1.UsersLog was dropped |
+------------+---------------------+------------+------------------------------------------+
demodb.public/demostore# LIST CHANGELOGS IN SCHEMA otherdb."S1";
+------------+------------+------------+------------+-------------+-------------+-------------+
| Name | Type | Owner | State | Properties | Created At | Updated At |
+============+============+============+============+=============+=============+=============+
+------------+------------+------------+------------+-------------+-------------+-------------+