* Use a LiteCoordinateSequence, since this mimics GeoServer behaviour better,
* and it exposes bugs in CoordinateSequence handling.
*/
final Hints hints = new Hints();
hints.put(Hints.JTS_COORDINATE_SEQUENCE_FACTORY, new LiteCoordinateSequenceFactory());
Query query = new DefaultQuery(tname(POLY3D));
query.setHints(hints);
FeatureReader<SimpleFeatureType, SimpleFeature> fr = dataStore.getFeatureReader(
query, Transaction.AUTO_COMMIT);
assertTrue(fr.hasNext());
f = fr.next();