Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
JkSelf committed Sep 29, 2024
1 parent 44a5d5f commit 67a2b97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ TEST_F(HdfsFileSystemTest, read) {
driver->BuilderSetNameNode(builder, localhost.c_str());
driver->BuilderSetNameNodePort(builder, 7878);
driver->BuilderSetForceNewInstance(builder);
std::cout << "the destinationPath is " << destinationPath << "\n";

auto hdfs = driver->BuilderConnect(builder);
VELOX_CHECK_NOT_NULL(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ TEST_F(InsertIntoHdfsTest, insertIntoHdfsTest) {
makeFlatVector<int16_t>(expectedRows, [](auto row) { return row; }),
makeFlatVector<double>(expectedRows, [](auto row) { return row; })});

auto outputDirectory = "hdfs://localhost:" + nameNodePort;
auto outputDirectory = "hdfs://localhost:" + nameNodePort + "/";
// INSERT INTO hdfs with one writer
auto plan = PlanBuilder()
.values({input})
Expand Down

0 comments on commit 67a2b97

Please sign in to comment.