Using KSQL (Confluent: Version: 5.0.1) I'm able to drop a table / stream normally (using DROP [TABLE|STREAM]
) <NAME>
when the linked topic exist and when it is registered (Registered=true).
However, if the topic is dropped first (Registered=false) then the associated stream or table can't be dropped with KSQL pointing out that "No topic with name Foo was registered".
The problem is that the stream / table still shows in the list and no new stream / table can be added using the same name.
Is there any way to delete them after the topic was dropped?