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
In the node software (sqlparse.py, restriction2Q), LIKE clauses are mapped to Django's _contains, __endswith, and __startswith methods. This does not completely implement the SQL LIKE clause (e.g. the single-character '' wildcard is not implemented, multiple '%' wildcards are not implemented).
Misha's Java node software does implement SQL LIKE, so he likes the idea of allowing it. I'm not so sure.
One (major!) problem is that nowhere in the VSS2 standards does it state explicitly which SQL relations are permitted or how they will be interpreted.
(submitted by xnx to other repo)
The text was updated successfully, but these errors were encountered:
In the node software (sqlparse.py, restriction2Q), LIKE clauses are mapped to Django's _contains, __endswith, and __startswith methods. This does not completely implement the SQL LIKE clause (e.g. the single-character '' wildcard is not implemented, multiple '%' wildcards are not implemented).
Misha's Java node software does implement SQL LIKE, so he likes the idea of allowing it. I'm not so sure.
One (major!) problem is that nowhere in the VSS2 standards does it state explicitly which SQL relations are permitted or how they will be interpreted.
(submitted by xnx to other repo)
The text was updated successfully, but these errors were encountered: