TakodaS opened a new issue, #2717:
URL: https://github.com/apache/fluss/issues/2717

   ### Search before asking
   
   - [x] I searched in the [issues](https://github.com/apache/fluss/issues) and 
found nothing similar.
   
   
   ### Fluss version
   
   0.8.0 (latest release)
   
   ### Please describe the bug 🐞
   
   Running the following in the Flink engine:
   ```sql
   CREATE CATALOG fluss WITH (
       'type' = 'fluss',
       'bootstrap.servers' = 'localhost:9123'
   );
   USE CATALOG fluss;
   CREATE DATABASE foo;
   USE foo;
   
   CREATE TABLE bar (
       id STRING
   ) WITH (
       'table.datalake.enabled' = 'true'
   );
   DROP TABLE bar;
   
   CREATE TABLE bar (
       id STRING
   ) WITH (
       'table.datalake.enabled' = 'true'
   );
   ```
   
   Results in a failure on the last create statement with exception
   ```bash
   CatalogException: The table foo.bar already exists in paimon catalog, please 
first drop the table in paimon catalog or use a new table name.
   ```
   This suggests fluss fails to correctly delete the underlying paimon table, 
which I don't think is intended behavior.
   
   ### Solution
   
   _No response_
   
   ### Are you willing to submit a PR?
   
   - [ ] I'm willing to submit a PR!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to