diff --git a/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/PushDownAggThroughJoinOnPkFkTest.java b/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/PushDownAggThroughJoinOnPkFkTest.java index 1ef4653e36cbca..ad9c82cdfa720e 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/PushDownAggThroughJoinOnPkFkTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/PushDownAggThroughJoinOnPkFkTest.java @@ -31,21 +31,21 @@ protected void runBeforeAll() throws Exception { createTables( "CREATE TABLE IF NOT EXISTS pri (\n" + " id1 int not null,\n" - + " name char\n" + + " name int\n" + ")\n" + "DUPLICATE KEY(id1)\n" + "DISTRIBUTED BY HASH(id1) BUCKETS 10\n" + "PROPERTIES (\"replication_num\" = \"1\")\n", "CREATE TABLE IF NOT EXISTS foreign_not_null (\n" + " id2 int not null,\n" - + " name char\n" + + " name int\n" + ")\n" + "DUPLICATE KEY(id2)\n" + "DISTRIBUTED BY HASH(id2) BUCKETS 10\n" + "PROPERTIES (\"replication_num\" = \"1\")\n", "CREATE TABLE IF NOT EXISTS foreign_null (\n" + " id3 int,\n" - + " name char\n" + + " name int\n" + ")\n" + "DUPLICATE KEY(id3)\n" + "DISTRIBUTED BY HASH(id3) BUCKETS 10\n"