Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ TEST_F(TableQueryByRowTest, DenseSingleDeviceSsiLevelPushdown) {
// Pushdown is faster than full query + manual next: queryByRow(offset, limit)
// skips at device/SSI/Chunk level; old query then manual next decodes every
// row. Timing tolerance 20% to allow measurement noise.
TEST_F(TableQueryByRowTest, QueryByRowFasterThanManualNext) {
TEST_F(TableQueryByRowTest, DISABLED_QueryByRowFasterThanManualNext) {
const int num_rows = 8000;
const int offset = 3000;
const int limit = 1000;
Expand Down
2 changes: 1 addition & 1 deletion cpp/test/reader/tree_view/tsfile_tree_query_by_row_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ TEST_F(TreeQueryByRowTest, MultiPath_TimeHint_SkipsStaleChunk_WithOffset) {
// Pushdown is faster than full query + manual next: queryByRow(offset, limit)
// skips at Chunk/Page level; old query then manual next decodes every row.
// Timing tolerance 20% to allow measurement noise.
TEST_F(TreeQueryByRowTest, QueryByRowFasterThanManualNext) {
TEST_F(TreeQueryByRowTest, DISABLED_QueryByRowFasterThanManualNext) {
std::vector<std::string> devices = {"d1"};
std::vector<std::string> measurements = {"s1"};
const int num_rows = 8000;
Expand Down
Loading