diff options
author | ToineSiebelink <toine.siebelink@est.tech> | 2022-12-21 09:29:54 +0000 |
---|---|---|
committer | ToineSiebelink <toine.siebelink@est.tech> | 2022-12-21 16:08:23 +0000 |
commit | dbf10db6f468075293d61e7bbeb9006fd15cfce6 (patch) | |
tree | 4c81cf449fba88e37ee0ea5d432b239e56db8d6f /cps-path-parser | |
parent | 482b6745fea99c6af3a776bc8660ac914aa5c2b8 (diff) |
CpsPath Query Optimization
- Optimized CpsPathqueries with descendants that only care about the xpath (no attribuets checks)
- Use native query with regular expression for target xpath and descendants
- Refactored so existing sql-geneartion code can be re-used in different repository implementations
- Adjusted related performance test expectations
Issue-ID: CPS-1421
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
Change-Id: I3a807a14478c4b3272a5335d31c9aa3615eb2bee
Diffstat (limited to 'cps-path-parser')
-rw-r--r-- | cps-path-parser/src/test/groovy/org/onap/cps/cpspath/parser/CpsPathUtilSpec.groovy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cps-path-parser/src/test/groovy/org/onap/cps/cpspath/parser/CpsPathUtilSpec.groovy b/cps-path-parser/src/test/groovy/org/onap/cps/cpspath/parser/CpsPathUtilSpec.groovy index 662e42b6b2..df2e9d72c6 100644 --- a/cps-path-parser/src/test/groovy/org/onap/cps/cpspath/parser/CpsPathUtilSpec.groovy +++ b/cps-path-parser/src/test/groovy/org/onap/cps/cpspath/parser/CpsPathUtilSpec.groovy @@ -85,4 +85,5 @@ class CpsPathUtilSpec extends Specification { // In CI this actually takes about 3-5 sec which is approx. 50+ parser executions per millisecond! assert setupStopWatch.getTotalTimeMillis() < 10000 } + } |