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
SELECT s FROM nt:unstructured WHERE i18n:de-changer = 11
Which is invalid JCR-SQL2 it should be:
SELECT s FROM nt:unstructured WHERE [i18n:de-changer] = 11
This causes problems with Jackrabbit, but not doctrine-dbal which doesn't care.
Note that this is also specifically a problem for PHPCRSH when we perform UPDATEs. Normally queries to Jackrabbit are passed directly - bypassing the phpcr-utils SQL2 generation.
In PHPCRSH however we parse the UPDATE (and implicitly the SELECT) which reveals this issue.
The text was updated successfully, but these errors were encountered:
e.g. it produces the following:
Which is invalid JCR-SQL2 it should be:
This causes problems with Jackrabbit, but not doctrine-dbal which doesn't care.
Note that this is also specifically a problem for PHPCRSH when we perform UPDATEs. Normally queries to Jackrabbit are passed directly - bypassing the
phpcr-utils
SQL2 generation.In PHPCRSH however we parse the UPDATE (and implicitly the SELECT) which reveals this issue.
The text was updated successfully, but these errors were encountered: