Changes between Initial Version and Version 1 of Ticket #1342
- Timestamp:
- Jul 28, 2016, 9:45:45 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1342
- Property Owner changed from to
- Property Status new → assigned
- Property Component rasql → qlparser
-
Ticket #1342 – Description
initial v1 13 13 }}} 14 14 15 but rgb with "red, green, blue" has no problem16 17 {{{18 SELECT encode(c.red, "PNG") FROM rgb AS c19 }}}20 21 15 If change to band index, it also can run with irr_cube_2 22 23 16 24 17 {{{ … … 27 20 28 21 22 To reproduce: 23 {{{ 24 rasql -q "create collection a RGBSet" --user rasadmin --passwd rasadmin 25 rasql -q 'insert into a values marray i in [0:1,0:1] values {0c,0c,0c}' --user rasadmin --passwd rasadmin 26 rasql -q 'select c.red from a as c' 27 }}} 28 The last command should not throw an error. 29 29 30 You have to look at where the error is thrown (grep for 370 in rasdaman and try to trace all places where it's thrown) and try to find the issue. 30 31 32 It could be in the query language parser code, source:qlparser/lex.ll and source:qlparser/oql.yy