Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Enhancement] Rank topn prune redundant rows #8108

Merged
merged 6 commits into from
Jul 4, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update num
  • Loading branch information
liuyehcf committed Jul 2, 2022
commit cc3193fba6344884bb1949cc930217475d46084e
4 changes: 2 additions & 2 deletions be/src/exec/vectorized/chunks_sorter.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
namespace starrocks::vectorized {

struct DataSegment {
static const uint8_t SMALLER_THAN_MIN_OF_SEGMENT = 0;
static const uint8_t SMALLER_THAN_MIN_OF_SEGMENT = 2;
static const uint8_t INCLUDE_IN_SEGMENT = 1;
static const uint8_t LARGER_THAN_MAX_OF_SEGMENT = 2;
static const uint8_t LARGER_THAN_MAX_OF_SEGMENT = 0;

ChunkPtr chunk;
Columns order_by_columns;
Expand Down