org.geotools.filter.text.commons.ExpressionToText.visit(final Literal _expression_, final Object extraData) must treat the case (literal instanceof Boolean) and output TRUE or FALSE instead of creating quoted strings of boolean literals. org.geotools.filter.text.commons.ExpressionToTextvisit(final PropertyName _expression_, final Object extraData) must treat the property name "id" as a special case and output it with double quotes. org.geotools.filter.text.commons.ExpressionToTextvisit(final PropertyName _expression_, final Object extraData) must treat property names which don't conform to Pattern.compile("[_a-zA-Z][_a-zA-Z0-9]*") as a special case and output them with double quotes. |