Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Invalid
-
4.8.1
-
None
-
None
Description
I created decimal type descending index column. Some case compare result is odd.
- table schema
CREATE TABLE IF NOT EXISTS test_tbl2 (
num DECIMAL NOT NULL
CONSTRAINT pk PRIMARY KEY (num DESC)
)
;
- explain query
explain
select * from test_tbl2
where
num >= 1498755000000 and num <= 1498755999000;
- explain result
DEGENERATE SCAN OVER TEST_TBL2
Attachments
Issue Links
- is related to
-
PHOENIX-4306 Add more tests for DESC sort order
- Closed