You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am trying to run the sample code against a hbase 0.98.4 instance, and I use the 0.98.5 version of hbase-client library, but there are compiling errors about the Withinfiler class, it seems there are problems about these two methods:
@OverRide
public void write(DataOutput out) throws IOException {
out.writeUTF(query.toText());
}
Hi, I am trying to run the sample code against a hbase 0.98.4 instance, and I use the 0.98.5 version of hbase-client library, but there are compiling errors about the Withinfiler class, it seems there are problems about these two methods:
@OverRide
public void write(DataOutput out) throws IOException {
out.writeUTF(query.toText());
}
@OverRide
public void readFields(DataInput in) throws IOException {
String wkt = in.readUTF();
WKTReader reader = new WKTReader(factory);
try {
this.query = reader.read(wkt);
} catch (ParseException e) {
throw new IOException(e);
}
}
The error messages are: the method readFields(DataInput)of type WithinFilter must override or implement a supertype method.
The text was updated successfully, but these errors were encountered: