Skip to content

Commit

Permalink
[test] Avoid table name duplication in HiveWriteITCase (#4563)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zouxxyy authored Nov 21, 2024
1 parent 499afd9 commit dd1d53a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ private String writeData(Table table, String path, List<InternalRow> data) throw
write.close();
commit.close();

String tableName = "test_table_" + (UUID.randomUUID().toString().substring(0, 4));
String tableName = "test_table_" + UUID.randomUUID().toString().replace('-', '_');
hiveShell.execute(
String.join(
"\n",
Expand Down

0 comments on commit dd1d53a

Please sign in to comment.