Opened 5 years ago
Closed 4 years ago
#2286 closed enhancement (fixed)
rasql - throw exception when it encounters first invalid subsets
Reported by: | Bang Pham Huu | Owned by: | apercov |
---|---|---|---|
Priority: | minor | Milestone: | Future |
Component: | server | Version: | 9.8 |
Keywords: | Cc: | Dimitar Misev | |
Complexity: | Medium |
Description
rasql -q 'select sdom(c) from test_mr as c' --out string [0:59,0:39]
Note: the first grid subsets are invalid (out of collection's grid domains).
rasql -q 'select c[-20:70,-20:79][0:10,0:10] from test_mr as c' Executing retrieval query... ok.
But this one returns no error because of the second grid domains [0:10,0:10]
Change History (5)
comment:1 by , 5 years ago
Milestone: | 10.0 → Future |
---|---|
Priority: | major → minor |
comment:2 by , 5 years ago
Status: | assigned → accepted |
---|
comment:3 by , 5 years ago
comment:4 by , 5 years ago
@Arsenij: this is a minor ticket for future. You don't need to research about it.
For this ticket, it should throw exception right at the time with c[50:70,20:79]
.
comment:5 by , 4 years ago
Resolution: | → fixed |
---|---|
Status: | accepted → closed |
Note:
See TracTickets
for help on using tickets.
Researched the problem. It seems that rasdaman currently ignores all other domains specified, but the last one. F.e. c[50:70,20:79][0:10,0:10] evaluates as c[0:10,0:10]. What should be the result here?