-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Wrong result for ArithmeticExpr #975
Comments
It looks like that result string has dirty content |
This bug has been fixed in master, it should be Decimal's bug and new Decimal has fixed it. |
@chenhao7253886 Hi, which PR fix this issue? |
#727 And this bug is in the current implementation, we are trying to fix it. |
@imay OK. Thanks you. |
You can try #980 to see if this will fix your problem |
#980 has fixed this issue, Thanks! |
…ition hit index condition, we do read data in second phase fetch (apache#975) rules as follow: ``` 1. only ordering column need to be read when in condition bellow: eg. `select * from test_es_nested_json where title match 'java' order by creationDate, qid limit 10;` column data except `creationDate` and `qid` should not be read from segment iterator, as for `title` since it has inverted index, we just need to using it's index data to filter rowids and set into row id column, the real data will be fetch and update in second phase 2. we still need `title` in reading schema, since we still put this column in `vectorized::Block`, but fill default values in SegmentIterator::_prune_column ``` Co-authored-by: eldenmoon <[email protected]>
Describe the bug
The text was updated successfully, but these errors were encountered: