We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if a fes filter:
<ogc:Filter xmlns:ogc="http://www.opengis.net/ogc"> <ogc:And> <ogc:PropertyIsEqualTo> <ogc:PropertyName>Type</ogc:PropertyName> <ogc:Literal>dataset</ogc:Literal> </ogc:PropertyIsEqualTo> <ogc:PropertyIsLike wildCard="*" singleChar="_" escapeChar="/"> <ogc:PropertyName>AnyText</ogc:PropertyName> <ogc:Literal>*potentielle Evapotranspiration*</ogc:Literal> </ogc:PropertyIsLike> </ogc:And> </ogc:Filter>
is converted to a django filter, the like query will result in a exact lookup for *potentielle Evapotranspiration*
*potentielle Evapotranspiration*
This is cause the current like function does not take into account the wildCard char. It will always use the hard coded % char as wildcard.
wildCard
%
The text was updated successfully, but these errors were encountered:
fixes geopython#81, geopython#80
a2acfc1
No branches or pull requests
Status Quo
if a fes filter:
is converted to a django filter, the like query will result in a exact lookup for
*potentielle Evapotranspiration*
This is cause the current like function does not take into account the
wildCard
char. It will always use the hard coded%
char as wildcard.The text was updated successfully, but these errors were encountered: