java - ArrayIndexOutOfBoundsException when running range query in Accumulo -
i using geomesa 1.1 connect accumulo 1.6.2 java. have no problems querying database specific attributes (specific column values). when try run range query (tried both time , geometric ranges) error.
when check accumulo logs see error:
exception while doing multi-scan java.lang.arrayindexoutofboundsexception: -1 but none of code uses arrays. exception thrown underlying library.
this how constructing cql filter:
filter cqlfilter = cql.tofilter("bbox(where, 160.0, 1.0, 170.0, 3.0)"); what might causing java.lang.arrayindexoutofboundsexception: -1?
edit
updated question , answer make clear isn't duplicate , provide more general future visitors.
as quick note, looks might using geomesa accumulo quickstart. geometry field there named 'where'. if update filter
filter cqlfilter = cql.tofilter("bbox(where, 160.0, 1.0, 170.0, 3.0)"); it may work you.
Comments
Post a Comment