Hello,
I am running a query with the following code snippet -
....
Table[] tables = schema.getTables();
DataSet ds =
dataContext.query().from(tables[0]).select("id").where("id").greaterThan(new
Integer(1)).execute();
while (ds.next()) {
Row row = ds.getRow();
System.out.println(row.getValue(0));
}
However, I see this log message -
54 [main] INFO org.apache.metamodel.util.ObjectComparator - Using
ToStringComparator because no better comparison method could be found
Is this issue being looked at or should it be reported/fixed?
Regards,
Ashish