From a818aaa53c47168edb44aa6b967e1e79b9e97273 Mon Sep 17 00:00:00 2001 From: Yixin Luo <18810541851@163.com> Date: Wed, 6 Nov 2024 08:13:16 +0000 Subject: [PATCH] resolve Signed-off-by: Yixin Luo <18810541851@163.com> --- .../src/test/java/com/starrocks/catalog/CreateTableTest.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/fe/fe-core/src/test/java/com/starrocks/catalog/CreateTableTest.java b/fe/fe-core/src/test/java/com/starrocks/catalog/CreateTableTest.java index c355cf0473735..0f25b1cd2ccee 100644 --- a/fe/fe-core/src/test/java/com/starrocks/catalog/CreateTableTest.java +++ b/fe/fe-core/src/test/java/com/starrocks/catalog/CreateTableTest.java @@ -2098,13 +2098,8 @@ public void testReservedColumnName() { String sql1 = "create table tbl_simple_pk(key0 string, __op boolean) primary key(key0)" + " distributed by hash(key0) properties(\"replication_num\"=\"1\");"; ExceptionChecker.expectThrowsWithMsg(AnalysisException.class, "Getting analyzing error." + -<<<<<<< HEAD - " Detail message: Column name [__op] is a system reserved name." + - " If you are sure you want to use it, please set FE configuration allow_system_reserved_names", -======= " Detail message: Column name [__op] is a system reserved name." + " Please choose a different one.", ->>>>>>> 3745ede0c1 ([Enhancement] try to prevent create pk table with __op column name by mistake (#52621)) () -> starRocksAssert.withTable(sql1)); }