aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToine Siebelink <toine.siebelink@est.tech>2022-09-22 09:56:59 +0000
committerGerrit Code Review <gerrit@onap.org>2022-09-22 09:56:59 +0000
commita8836fd17a316ba582b383802dc690db9f36023d (patch)
treec9e5712262d05faac667200040f436354d08205b
parent2e4e097f40d831c2d8edf6da3769a9eadb348312 (diff)
parentdd904328c38bdf302fc788db8489f6eb005fe0e5 (diff)
Merge "Updated release notes with limitation related to cps path"
-rw-r--r--docs/cps-path.rst2
-rwxr-xr-xdocs/release-notes.rst9
2 files changed, 11 insertions, 0 deletions
diff --git a/docs/cps-path.rst b/docs/cps-path.rst
index 44662d893..f321adfa9 100644
--- a/docs/cps-path.rst
+++ b/docs/cps-path.rst
@@ -241,6 +241,7 @@ leaf-conditions
- The key should be supplied with correct data type for it to be queried from DB. In the last example above the attribute code is of type
Integer so the cps query will not work if the value is passed as string.
eg: ``//categories[@code="1"]`` or ``//categories[@code='1']`` will not work because the key attribute code is treated a string.
+ - Having '[' token in any index in any list will have a negative impact on this function.
**Notes**
- For performance reasons it does not make sense to query using key leaf as attribute. If the key value is known it is better to execute a get request with the complete xpath.
@@ -265,6 +266,7 @@ The text()-condition can be added to any CPS path query.
- Only string and integer values are supported, boolean and float values are not supported.
- Since CPS cannot return individual leaves it will always return the container with all its leaves. Ancestor-axis can be used to specify a parent higher up the tree.
- When querying a leaf value (instead of leaf-list) it is better, more performant to use a text value condition use @<leaf-name> as described above.
+ - Having '[' token in any index in any list will have a negative impact on this function.
ancestor-axis
-------------
diff --git a/docs/release-notes.rst b/docs/release-notes.rst
index d4f984361..46ffbb32b 100755
--- a/docs/release-notes.rst
+++ b/docs/release-notes.rst
@@ -44,6 +44,15 @@ Features
Bug Fixes
---------
+ - `CPS-1179 <https://jira.onap.org/browse/CPS-1179>`_ Node API - GET method returns invalid response when identifier contains '/'
+
+Known Limitations, Issues and Workarounds
+-----------------------------------------
+
+*System Limitations*
+
+Having '[' token in any index in any list will have a negative impact on the search functions leaf-conditions and text()-condition.
+Example of an xpath that would cause problems while using cps-path queries : /parent/child[@id='id[with]braces']
.. ========================
.. * * * JAKARTA * * *