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
MarkLogic places restrictions on the expressions passed to cts:search. Expressions that are not fully searchable raise XDMP-UNSEARCHABLE errors. It would be useful to validate these in the plugin.
Logic:
Locate function calls to functions that use fully searchable expressions.
Locate the argument subquery for the expression parameter.
Walk the subquery PSI tree.
If a node in the tree does not implement XQueryConformance, it is unsearchable and an error is raised.
If the node does not conform to MarkLogicSearchableXPath, it is unsearchable and an error is raised.
MarkLogic places restrictions on the expressions passed to
cts:search
. Expressions that are not fully searchable raiseXDMP-UNSEARCHABLE
errors. It would be useful to validate these in the plugin.Logic:
XQueryConformance
, it is unsearchable and an error is raised.MarkLogicSearchableXPath
, it is unsearchable and an error is raised.Reference:
The text was updated successfully, but these errors were encountered: