LiebingYu commented on code in PR #1847:
URL: https://github.com/apache/fluss/pull/1847#discussion_r2516533010


##########
fluss-server/src/test/java/org/apache/fluss/server/coordinator/LakeTableManagerITCase.java:
##########
@@ -103,9 +103,7 @@ void testCreateAndGetTable() throws Exception {
                                                         lakeTablePath, 
lakeTableDescriptor, false))
                                         .get())
                 .cause()
-                .isInstanceOf(LakeTableAlreadyExistException.class)
-                .hasMessage(
-                        "The table %s already exists in paimon catalog, please 
first drop the table in paimon catalog or use a new table name.",
-                        lakeTablePath);
+                .isInstanceOf(TableAlreadyExistException.class)
+                .hasMessage("Table %s already exists.", lakeTablePath);

Review Comment:
   This exception is not related to lake table. It raise because we create a 
existing fluss table again.



-- 
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