Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Oct 18, 2024
1 parent 5415f0a commit 1b0c0cb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1b0c0cb

Please sign in to comment.