Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions dwio/nimble/tablet/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,19 @@ target_link_libraries(

add_library(nimble_tablet_reader FileLayout.cpp TabletReader.cpp)
target_link_libraries(
nimble_tablet_reader nimble_tablet_common nimble_chunk_index_fb
nimble_tablet_reader
nimble_tablet_common
nimble_chunk_index_fb
)

add_library(
nimble_tablet_writer ChunkIndexWriter.cpp ClusterIndexWriter.cpp
TabletWriter.cpp
)
target_link_libraries(
nimble_tablet_writer nimble_tablet_common nimble_cluster_index_fb
nimble_tablet_writer
nimble_tablet_common
nimble_cluster_index_fb
nimble_chunk_index_fb
)

Expand Down
2 changes: 1 addition & 1 deletion dwio/nimble/velox/tests/VeloxWriterTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ TEST_F(VeloxWriterTest, featureReorderingStreamCollocation) {
auto tablet = nimble::TabletReader::create(&readFile, leafPool_.get(), {});
ASSERT_GE(tablet->stripeCount(), 1);
if (enableIndex) {
ASSERT_NE(tablet->index(), nullptr) << "Cluster index must exist";
ASSERT_NE(tablet->clusterIndex(), nullptr) << "Cluster index must exist";
}

auto stripeId = tablet->stripeIdentifier(0);
Expand Down
Loading